aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenModule.h
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2010-12-30 00:13:21 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2010-12-30 00:13:21 +0000
commitacc6b4e2fdd9a242b7f15ded72dd542c0518a115 (patch)
tree217e367cfb43be9d0d2a62fc57a80c51ec35e78f /clang/lib/CodeGen/CodeGenModule.h
parent7bcde197d75fa40c982e47668dcfac2258f55296 (diff)
downloadllvm-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.h11
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);