Rename MallocFreeHelper as MemoryBuiltins

llvm-svn: 85286
diff --git a/llvm/lib/VMCore/Instruction.cpp b/llvm/lib/VMCore/Instruction.cpp
index 4e89222..4dbb402 100644
--- a/llvm/lib/VMCore/Instruction.cpp
+++ b/llvm/lib/VMCore/Instruction.cpp
@@ -303,7 +303,7 @@
   return false;
 }
 
-// Code here matches isFreeCall from MallocFreeHelper, which is not in VMCore.
+// Code here matches isFreeCall from MemoryBuiltins, which is not in VMCore.
 static bool isFreeCall(const Value* I) {
   const CallInst *CI = dyn_cast<CallInst>(I);
   if (!CI)
@@ -408,7 +408,7 @@
   }
 }
 
-// Code here matches isMalloc from MallocFreeHelper, which is not in VMCore.
+// Code here matches isMalloc from MemoryBuiltins, which is not in VMCore.
 static bool isMalloc(const Value* I) {
   const CallInst *CI = dyn_cast<CallInst>(I);
   if (!CI) {