summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/TreeTransform.h
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-08-20 17:11:53 +0000
committerChad Rosier <mcrosier@apple.com>2012-08-20 17:11:53 +0000
commitd4e55b8e35e374bbf52664163d3b48a525e9e506 (patch)
tree5b05de080de7ac5a98a8056d6cf09bb2fbd18eaf /clang/lib/Sema/TreeTransform.h
parent0a9ea7c70de2db1e8de3f75fbac61d302ef52375 (diff)
downloadbcm5719-llvm-d4e55b8e35e374bbf52664163d3b48a525e9e506.tar.gz
bcm5719-llvm-d4e55b8e35e374bbf52664163d3b48a525e9e506.zip
[ms-inline asm] Remove old cruft now that MS-style asms their own code path.
llvm-svn: 162210
Diffstat (limited to 'clang/lib/Sema/TreeTransform.h')
-rw-r--r--clang/lib/Sema/TreeTransform.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/clang/lib/Sema/TreeTransform.h b/clang/lib/Sema/TreeTransform.h
index 619ad330b95..05a3c611e9f 100644
--- a/clang/lib/Sema/TreeTransform.h
+++ b/clang/lib/Sema/TreeTransform.h
@@ -1172,12 +1172,11 @@ public:
MultiExprArg Exprs,
Expr *AsmString,
MultiExprArg Clobbers,
- SourceLocation RParenLoc,
- bool MSAsm) {
+ SourceLocation RParenLoc) {
return getSema().ActOnAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs,
NumInputs, Names, move(Constraints),
Exprs, AsmString, Clobbers,
- RParenLoc, MSAsm);
+ RParenLoc);
}
/// \brief Build a new MS style inline asm statement.
@@ -5600,8 +5599,7 @@ TreeTransform<Derived>::TransformAsmStmt(AsmStmt *S) {
move_arg(Exprs),
AsmString.get(),
move_arg(Clobbers),
- S->getRParenLoc(),
- S->isMSAsm());
+ S->getRParenLoc());
}
template<typename Derived>
OpenPOWER on IntegriCloud