From 2b3918a8e84b0865ae3026a6d52e2dcf1d9277a0 Mon Sep 17 00:00:00 2001 From: Steven Wu Date: Tue, 28 Apr 2015 22:07:05 +0000 Subject: [PATCH] Fix the typo in r236044. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236051 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Parse/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.40.0