diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-12-30 00:13:21 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-12-30 00:13:21 +0000 |
commit | acc6b4e2fdd9a242b7f15ded72dd542c0518a115 (patch) | |
tree | 217e367cfb43be9d0d2a62fc57a80c51ec35e78f /clang/lib/CodeGen/CodeGenModule.h | |
parent | 7bcde197d75fa40c982e47668dcfac2258f55296 (diff) | |
download | llvm-acc6b4e2fdd9a242b7f15ded72dd542c0518a115.zip llvm-acc6b4e2fdd9a242b7f15ded72dd542c0518a115.tar.gz llvm-acc6b4e2fdd9a242b7f15ded72dd542c0518a115.tar.bz2 |
Simplify mem{cpy, move, set} creation with IRBuilder.
llvm-svn: 122634
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 3a5677b..14a0e49 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -369,17 +369,6 @@ public: llvm::Value *getBuiltinLibFunction(const FunctionDecl *FD, unsigned BuiltinID); - llvm::Function *getMemCpyFn(const llvm::Type *DestType, - const llvm::Type *SrcType, - const llvm::Type *SizeType); - - llvm::Function *getMemMoveFn(const llvm::Type *DestType, - const llvm::Type *SrcType, - const llvm::Type *SizeType); - - llvm::Function *getMemSetFn(const llvm::Type *DestType, - const llvm::Type *SizeType); - llvm::Function *getIntrinsic(unsigned IID, const llvm::Type **Tys = 0, unsigned NumTys = 0); |