commit | b49febeaee5dec219fae5d5f72fcdf4d3f24030f | [log] [tgz] |
---|---|---|
author | Steven Wu <stevenwu@apple.com> | Tue Apr 28 22:07:05 2015 +0000 |
committer | Steven Wu <stevenwu@apple.com> | Tue Apr 28 22:07:05 2015 +0000 |
tree | a457d9b953906969583f85abed076a79e935e323 | |
parent | e18d662201cd8d849cb45ee89cfa048d5c7a35cf [diff] [blame] |
Fix the typo in r236044. NFC. llvm-svn: 236051
diff --git a/clang/lib/Parse/Parser.cpp b/clang/lib/Parse/Parser.cpp index 81adbfb..6211322 100644 --- a/clang/lib/Parse/Parser.cpp +++ b/clang/lib/Parse/Parser.cpp
@@ -1253,7 +1253,7 @@ 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);