From: Steven Wu Date: Tue, 28 Apr 2015 22:07:05 +0000 (+0000) Subject: Fix the typo in r236044. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b3918a8e84b0865ae3026a6d52e2dcf1d9277a0;p=clang Fix the typo in r236044. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236051 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp index 81adbfba8b..6211322719 100644 --- a/lib/Parse/Parser.cpp +++ b/lib/Parse/Parser.cpp @@ -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);