diff options
author | Anders Carlsson <andersca@mac.com> | 2010-01-30 22:25:16 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-01-30 22:25:16 +0000 |
commit | ff93dbd887e40588ed55d135037bb9287488b285 (patch) | |
tree | 3a88704be716f039310968c0050eeadd20c0c2a1 /lib/AST/Stmt.cpp | |
parent | 807b06157a1a5c050520fc194d32f16d22d423a8 (diff) |
Use IdentifierInfo * instead of std::string for the AsmStmt names.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Stmt.cpp')
-rw-r--r-- | lib/AST/Stmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index 28f7371b09..c2c2f0a409 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -158,7 +158,7 @@ llvm::StringRef AsmStmt::getInputConstraint(unsigned i) const { void AsmStmt::setOutputsAndInputsAndClobbers(ASTContext &C, - const std::string *Names, + IdentifierInfo **Names, StringLiteral **Constraints, Stmt **Exprs, unsigned NumOutputs, @@ -335,7 +335,7 @@ unsigned AsmStmt::AnalyzeAsmString(llvm::SmallVectorImpl<AsmStringPiece>&Pieces, AsmStmt::AsmStmt(SourceLocation asmloc, bool issimple, bool isvolatile, bool msasm, unsigned numoutputs, unsigned numinputs, - const std::string *names, StringLiteral **constraints, + IdentifierInfo **names, StringLiteral **constraints, Expr **exprs, StringLiteral *asmstr, unsigned numclobbers, StringLiteral **clobbers, SourceLocation rparenloc) : Stmt(AsmStmtClass), AsmLoc(asmloc), RParenLoc(rparenloc), AsmStr(asmstr) |