diff options
author | Anders Carlsson <andersca@mac.com> | 2010-01-24 05:50:09 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-01-24 05:50:09 +0000 |
commit | 703e39486689d6660e75f6b6de0068db031a51c7 (patch) | |
tree | b94e80b292abcab3b15e1de84b0bd66c3e836f2d /lib/AST/Stmt.cpp | |
parent | a57259e9d7b30bcce93f0a62eee0488738026172 (diff) |
Implement instantiation of AsmStmts (Crazy, I know)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94361 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Stmt.cpp')
-rw-r--r-- | lib/AST/Stmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index 104e336189..821bcb5106 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -338,7 +338,7 @@ unsigned AsmStmt::AnalyzeAsmString(llvm::SmallVectorImpl<AsmStringPiece>&Pieces, AsmStmt::AsmStmt(SourceLocation asmloc, bool issimple, bool isvolatile, bool msasm, unsigned numoutputs, unsigned numinputs, - std::string *names, StringLiteral **constraints, + const std::string *names, StringLiteral **constraints, Expr **exprs, StringLiteral *asmstr, unsigned numclobbers, StringLiteral **clobbers, SourceLocation rparenloc) : Stmt(AsmStmtClass), AsmLoc(asmloc), RParenLoc(rparenloc), AsmStr(asmstr) |