[llvm-commits] [llvm] r99283 - /llvm/trunk/include/llvm/Transforms/Utils/BuildLibCalls.h

Evan Cheng evan.cheng at apple.com
Tue Mar 23 08:49:37 PDT 2010


Author: evancheng
Date: Tue Mar 23 10:49:37 2010
New Revision: 99283

URL: http://llvm.org/viewvc/llvm-project?rev=99283&view=rev
Log:
Forgot this.

Modified:
    llvm/trunk/include/llvm/Transforms/Utils/BuildLibCalls.h

Modified: llvm/trunk/include/llvm/Transforms/Utils/BuildLibCalls.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Transforms/Utils/BuildLibCalls.h?rev=99283&r1=99282&r2=99283&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Transforms/Utils/BuildLibCalls.h (original)
+++ llvm/trunk/include/llvm/Transforms/Utils/BuildLibCalls.h Tue Mar 23 10:49:37 2010
@@ -49,6 +49,9 @@
   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,





More information about the llvm-commits mailing list