diff options
author | Mon P Wang <wangmp@apple.com> | 2010-04-02 18:04:30 +0000 |
---|---|---|
committer | Mon P Wang <wangmp@apple.com> | 2010-04-02 18:04:30 +0000 |
commit | 4b82a8876434e76921f15f4b395440179515b7b5 (patch) | |
tree | 4448cfe3e8b6a8c30234950cb8d35adfa0442ee4 /clang/lib/CodeGen/CodeGenModule.h | |
parent | a972ab8564c8c7ad1afaa0f32e25c15db42493a7 (diff) | |
download | bcm5719-llvm-4b82a8876434e76921f15f4b395440179515b7b5.tar.gz bcm5719-llvm-4b82a8876434e76921f15f4b395440179515b7b5.zip |
Reapply patch for adding support for address spaces and added a isVolatile field to memcpy, memmove, and memset.
llvm-svn: 100193
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 3c57c0b8cbf..74aa4d8a5b2 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -290,9 +290,17 @@ public: llvm::Value *getBuiltinLibFunction(const FunctionDecl *FD, unsigned BuiltinID); - llvm::Function *getMemCpyFn(); - llvm::Function *getMemMoveFn(); - llvm::Function *getMemSetFn(); + 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); |