diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-09-10 00:32:18 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-09-10 00:32:18 +0000 |
commit | 5323a4b0a1c248fa2ffdf886bb41a5d8fba71d2d (patch) | |
tree | ca15547af9db5224793dd3bcd68d7d2a8fcc2926 /lib/CodeGen/CodeGenFunction.h | |
parent | 3913f184c84135fb4612743f1faa6c1edd2dd055 (diff) |
Tweak CGCall functions:
- Move actual param attr list creation to
CodeGenFunction::ConstructParamAttrList.
- Make ReturnTypeUsesSret static.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56038 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index f5eba15a24..ef7009c5aa 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -140,7 +140,12 @@ public: /// ReturnTypeUsesSret - Return true iff the given type uses 'sret' /// when used as a return type. - bool ReturnTypeUsesSret(QualType RetTy); + static bool ReturnTypeUsesSret(QualType RetTy); + + static void ConstructParamAttrList(const Decl *TargetDecl, + const ArgTypeIterator begin, + const ArgTypeIterator end, + ParamAttrListType &PAL); /// EmitFunctionProlog - Emit the target specific LLVM code to load /// the arguments for the given function. This is also responsible |