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 /include/clang/Parse/Action.h | |
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 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 4cbc21ad01..591ec47a68 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -866,7 +866,8 @@ public: MultiExprArg Exprs, ExprArg AsmString, MultiExprArg Clobbers, - SourceLocation RParenLoc) { + SourceLocation RParenLoc, + bool MSAsm = false) { return StmtEmpty(); } |