diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-01-18 16:53:17 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-01-18 16:53:17 +0000 |
commit | 3037ed0a27dba62e522304183718efc149e8b6d9 (patch) | |
tree | 4c28c8a28d61f00486b22bdb91b5493467526650 /lib/Sema/Sema.h | |
parent | 4cffe2fd5c23168bc08f0453c684cbd3f79471d3 (diff) |
Convert asm statement action to smart pointers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.h')
-rw-r--r-- | lib/Sema/Sema.h | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/lib/Sema/Sema.h b/lib/Sema/Sema.h index 16c2f2f57e..ef69ec24a7 100644 --- a/lib/Sema/Sema.h +++ b/lib/Sema/Sema.h @@ -901,18 +901,17 @@ public: OwningStmtResult ActOnBlockReturnStmt(SourceLocation ReturnLoc, Expr *RetValExp); - virtual StmtResult ActOnAsmStmt(SourceLocation AsmLoc, - bool IsSimple, - bool IsVolatile, - unsigned NumOutputs, - unsigned NumInputs, - std::string *Names, - ExprTy **Constraints, - ExprTy **Exprs, - ExprTy *AsmString, - unsigned NumClobbers, - ExprTy **Clobbers, - SourceLocation RParenLoc); + virtual OwningStmtResult ActOnAsmStmt(SourceLocation AsmLoc, + bool IsSimple, + bool IsVolatile, + unsigned NumOutputs, + unsigned NumInputs, + std::string *Names, + MultiExprArg Constraints, + MultiExprArg Exprs, + ExprArg AsmString, + MultiExprArg Clobbers, + SourceLocation RParenLoc); virtual StmtResult ActOnObjCAtCatchStmt(SourceLocation AtLoc, SourceLocation RParen, StmtTy *Parm, |