summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2010-01-04 22:37:17 +0000
committerMike Stump <mrs@apple.com>2010-01-04 22:37:17 +0000
commit90be58afce42b766dcb0a5bcaa54d136ffb63b58 (patch)
tree0a38051f4638eeeb9aeaac712e51e0851a8f87e2 /clang/lib/Parse
parentb8e66c3b143b2057bde555468b4f7116f4e6eb55 (diff)
downloadbcm5719-llvm-90be58afce42b766dcb0a5bcaa54d136ffb63b58.tar.gz
bcm5719-llvm-90be58afce42b766dcb0a5bcaa54d136ffb63b58.zip
Remember if the AsmStmt came from Microsoft-style inline assembly code.
llvm-svn: 92526
Diffstat (limited to 'clang/lib/Parse')
-rw-r--r--clang/lib/Parse/ParseStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseStmt.cpp b/clang/lib/Parse/ParseStmt.cpp
index 9085b8713df..277cc91d37c 100644
--- a/clang/lib/Parse/ParseStmt.cpp
+++ b/clang/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.
OpenPOWER on IntegriCloud