]> granicus.if.org Git - clang/commitdiff
Fix the typo in r236044. NFC.
authorSteven Wu <stevenwu@apple.com>
Tue, 28 Apr 2015 22:07:05 +0000 (22:07 +0000)
committerSteven Wu <stevenwu@apple.com>
Tue, 28 Apr 2015 22:07:05 +0000 (22:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236051 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Parse/Parser.cpp

index 81adbfba8b2fa089cbabd6c652aff2a1d2f35142..62113227190ca361132067949b6f6a6ec759fc1b 100644 (file)
@@ -1253,7 +1253,7 @@ ExprResult Parser::ParseSimpleAsm(SourceLocation *EndLoc) {
   assert(Tok.is(tok::kw_asm) && "Not an asm!");
   SourceLocation Loc = ConsumeToken();
 
-  // Check if GNU-styple InlineAsm is disabled.
+  // Check if GNU-style InlineAsm is disabled.
   if (!getLangOpts().GNUAsm)
     Diag(Loc, diag::err_gnu_inline_asm_disabled);