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 /lib/AST/Stmt.cpp | |
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 'lib/AST/Stmt.cpp')
-rw-r--r-- | lib/AST/Stmt.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index 77452c9d9d..963a20c338 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -559,14 +559,13 @@ QualType CXXCatchStmt::getCaughtType() const { //===----------------------------------------------------------------------===// AsmStmt::AsmStmt(ASTContext &C, SourceLocation asmloc, bool issimple, - bool isvolatile, bool msasm, - unsigned numoutputs, unsigned numinputs, + bool isvolatile, unsigned numoutputs, unsigned numinputs, IdentifierInfo **names, StringLiteral **constraints, Expr **exprs, StringLiteral *asmstr, unsigned numclobbers, StringLiteral **clobbers, SourceLocation rparenloc) : Stmt(AsmStmtClass), AsmLoc(asmloc), RParenLoc(rparenloc), AsmStr(asmstr) - , IsSimple(issimple), IsVolatile(isvolatile), MSAsm(msasm) - , NumOutputs(numoutputs), NumInputs(numinputs), NumClobbers(numclobbers) { + , IsSimple(issimple), IsVolatile(isvolatile), NumOutputs(numoutputs) + , NumInputs(numinputs), NumClobbers(numclobbers) { unsigned NumExprs = NumOutputs + NumInputs; |