summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2010-03-23 15:49:37 +0000
committerEvan Cheng <evan.cheng@apple.com>2010-03-23 15:49:37 +0000
commitd826e65ef2a1af0851be0901b1afd227362a912c (patch)
treec2bd290e07e03df386698219689e7c828263e604 /include
parent0289b419a492c207f2aaaa481c632cdcf33db5f3 (diff)
downloadllvm-d826e65ef2a1af0851be0901b1afd227362a912c.tar.gz
llvm-d826e65ef2a1af0851be0901b1afd227362a912c.tar.bz2
llvm-d826e65ef2a1af0851be0901b1afd227362a912c.tar.xz
Forgot this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99283 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Transforms/Utils/BuildLibCalls.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Transforms/Utils/BuildLibCalls.h b/include/llvm/Transforms/Utils/BuildLibCalls.h
index ac5f07e2d3..9b76a37a85 100644
--- a/include/llvm/Transforms/Utils/BuildLibCalls.h
+++ b/include/llvm/Transforms/Utils/BuildLibCalls.h
@@ -49,6 +49,9 @@ namespace llvm {
Value *EmitMemCpy(Value *Dst, Value *Src, Value *Len,
unsigned Align, IRBuilder<> &B, const TargetData *TD);
+ Value *EmitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
+ IRBuilder<> &B, const TargetData *TD);
+
/// EmitMemMove - Emit a call to the memmove function to the builder. This
/// always expects that the size has type 'intptr_t' and Dst/Src are pointers.
Value *EmitMemMove(Value *Dst, Value *Src, Value *Len,