diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-08 17:35:36 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-08 17:35:36 +0000 |
commit | d2ff32aa945ccf0a6c14062505ee1f59bcc1d94c (patch) | |
tree | 51d5bc1aa41eece780820a17cc8a04550ba5668e /clang/lib/Sema/SemaStmt.cpp | |
parent | bf154daee6b55aa290c4c8a156cc803e71d7119d (diff) | |
download | bcm5719-llvm-d2ff32aa945ccf0a6c14062505ee1f59bcc1d94c.tar.gz bcm5719-llvm-d2ff32aa945ccf0a6c14062505ee1f59bcc1d94c.zip |
Add the IsSimple/IsVolatile parameters to the MSAsmStmt constructor.
llvm-svn: 161503
Diffstat (limited to 'clang/lib/Sema/SemaStmt.cpp')
-rw-r--r-- | clang/lib/Sema/SemaStmt.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaStmt.cpp b/clang/lib/Sema/SemaStmt.cpp index 5df1a50655c..2161aebe38e 100644 --- a/clang/lib/Sema/SemaStmt.cpp +++ b/clang/lib/Sema/SemaStmt.cpp @@ -2755,7 +2755,8 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, Diag(AsmLoc, diag::warn_unsupported_msasm); MSAsmStmt *NS = - new (Context) MSAsmStmt(Context, AsmLoc, AsmToks, AsmString, EndLoc); + new (Context) MSAsmStmt(Context, AsmLoc, true, true, AsmToks, AsmString, + EndLoc); return Owned(NS); } |