Fix the typo in r236044. NFC.

llvm-svn: 236051
This commit is contained in:
Steven Wu 2015-04-28 22:07:05 +00:00
parent e18d662201
commit b49febeaee
1 changed files with 1 additions and 1 deletions

View 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);