aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/Stmt.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-08-27 23:47:56 +0000
committerChad Rosier <mcrosier@apple.com>2012-08-27 23:47:56 +0000
commit33f0558f75f70061707d1388e305b8f92f4e55de (patch)
treec0b1ef120ec2f8cb8e6f625f12c1d7f48e523636 /lib/AST/Stmt.cpp
parent2fd559f041d49863a7396d9e330bc9dae95ac8c4 (diff)
[ms-inline asm] Add virtual function, getClobber, that returns a StringRef.
More work towards unifying asm stmt codegen. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Stmt.cpp')
-rw-r--r--lib/AST/Stmt.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp
index 94aec94998..fc66202c4a 100644
--- a/lib/AST/Stmt.cpp
+++ b/lib/AST/Stmt.cpp
@@ -321,6 +321,10 @@ bool Stmt::hasImplicitControlFlow() const {
}
}
+StringRef GCCAsmStmt::getClobber(unsigned i) const {
+ return getClobberStringLiteral(i)->getString();
+}
+
Expr *GCCAsmStmt::getOutputExpr(unsigned i) {
return cast<Expr>(Exprs[i]);
}