diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-20 17:11:53 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-20 17:11:53 +0000 |
commit | df4ee102aa909e2f40c294701bfeffac63e8d29b (patch) | |
tree | 358d5fb637a9275817351521a73c8ceebdf7cd9a /include/clang/AST/Stmt.h | |
parent | 7f839a6b35e5007964b538423b0a570eed26fc10 (diff) |
[ms-inline asm] Remove old cruft now that MS-style asms their own code path.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162210 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/Stmt.h')
-rw-r--r-- | include/clang/AST/Stmt.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h index 35fb69312b..19da420272 100644 --- a/include/clang/AST/Stmt.h +++ b/include/clang/AST/Stmt.h @@ -1385,10 +1385,10 @@ class AsmStmt : public Stmt { public: AsmStmt(ASTContext &C, SourceLocation asmloc, bool issimple, bool isvolatile, - bool msasm, unsigned numoutputs, unsigned numinputs, - IdentifierInfo **names, StringLiteral **constraints, - Expr **exprs, StringLiteral *asmstr, unsigned numclobbers, - StringLiteral **clobbers, SourceLocation rparenloc); + unsigned numoutputs, unsigned numinputs, IdentifierInfo **names, + StringLiteral **constraints, Expr **exprs, StringLiteral *asmstr, + unsigned numclobbers, StringLiteral **clobbers, + SourceLocation rparenloc); /// \brief Build an empty inline-assembly statement. explicit AsmStmt(EmptyShell Empty) : Stmt(AsmStmtClass, Empty), @@ -1403,8 +1403,6 @@ public: void setVolatile(bool V) { IsVolatile = V; } bool isSimple() const { return IsSimple; } void setSimple(bool V) { IsSimple = V; } - bool isMSAsm() const { return MSAsm; } - void setMSAsm(bool V) { MSAsm = V; } //===--- Asm String Analysis ---===// |