diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 23:03:55 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 23:03:55 +0000 |
commit | 8b1a343b6b360d63d5dc8a6beb841ce4414c1e00 (patch) | |
tree | 120fd5011db8b1d3324b35f80c540b3d77195bab /lib/CodeGen/CodeGenFunction.h | |
parent | ac50e3427cb9eb3dc9f13f29a78f00ef3122433d (diff) |
Add CodeGenFunction::ConvertTypeForMem forwarding function.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63678 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 0e6660c686..ab145d7a1e 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -228,6 +228,7 @@ public: /// return the given temporary. void EmitFunctionEpilog(const CGFunctionInfo &FI, llvm::Value *ReturnValue); + const llvm::Type *ConvertTypeForMem(QualType T); const llvm::Type *ConvertType(QualType T); /// LoadObjCSelf - Load the value of self. This function is only |