diff options
author | Mike Stump <mrs@apple.com> | 2010-01-04 22:37:17 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2010-01-04 22:37:17 +0000 |
commit | 3b11fd3b52e7b88233c602407c151d07cb093e75 (patch) | |
tree | 3a3260f0a13a7757c0a31980c28cf024331709eb /lib/Parse/ParseStmt.cpp | |
parent | bc021702e67a1c11d72a926f995cf418bb456315 (diff) |
Remember if the AsmStmt came from Microsoft-style inline assembly code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseStmt.cpp')
-rw-r--r-- | lib/Parse/ParseStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseStmt.cpp b/lib/Parse/ParseStmt.cpp index 9085b8713d..277cc91d37 100644 --- a/lib/Parse/ParseStmt.cpp +++ b/lib/Parse/ParseStmt.cpp @@ -1182,7 +1182,7 @@ Parser::OwningStmtResult Parser::FuzzyParseMicrosoftAsmStatement() { return Actions.ActOnAsmStmt(Tok.getLocation(), true, true, 0, 0, Names.data(), move_arg(Constraints), move_arg(Exprs), move(AsmString), move_arg(Clobbers), - Tok.getLocation()); + Tok.getLocation(), true); } /// ParseAsmStatement - Parse a GNU extended asm statement. |