diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-09-10 00:41:16 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-09-10 00:41:16 +0000 |
commit | b768807c49a1c7085def099b848631856af766fa (patch) | |
tree | 21d82bbb3c1170b398415fb86346836e698c7bd0 /lib/CodeGen/CodeGenFunction.h | |
parent | 5323a4b0a1c248fa2ffdf886bb41a5d8fba71d2d (diff) |
Tweak CGCall functions again:
- Realized these functions will eventually need access to more data,
moved to CodeGenModule. Eventually they should probably live
together in some other helper class.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56039 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index ef7009c5aa..5054b56d21 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -138,15 +138,6 @@ public: const FunctionArgList &Args); void FinishFunction(SourceLocation EndLoc=SourceLocation()); - /// ReturnTypeUsesSret - Return true iff the given type uses 'sret' - /// when used as a return type. - 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 /// for naming the LLVM function arguments. |