diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-09-09 20:49:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-09-09 20:49:46 +0000 |
commit | 7482d12c345c6391f8956850545e2d4aa7701ce6 (patch) | |
tree | 404667f8c5ac06a5dcedaf6f8fcc81d5cc058aa3 /lib/CodeGen/CodeGenFunction.h | |
parent | 71b914b999d9c4b6df11068fc5a3291ac4770492 (diff) |
Move EmitAggregate{Copy,Clear} into CodeGenFunction.
- No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56010 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 95b72a4ed7..d00c188639 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -181,6 +181,11 @@ public: RValue EmitAnyExprToTemp(const Expr *E, llvm::Value *AggLoc = 0, bool isAggLocVolatile = false); + void EmitAggregateCopy(llvm::Value *DestPtr, llvm::Value *SrcPtr, + QualType EltTy); + + void EmitAggregateClear(llvm::Value *DestPtr, QualType Ty); + /// isDummyBlock - Return true if BB is an empty basic block /// with no predecessors. static bool isDummyBlock(const llvm::BasicBlock *BB); |