Fix a bug introduced by "internal linkage" work.

llvm-svn: 1415
diff --git a/llvm/lib/Transforms/Scalar/LowerAllocations.cpp b/llvm/lib/Transforms/Scalar/LowerAllocations.cpp
index 882485f..bb2cdb6 100644
--- a/llvm/lib/Transforms/Scalar/LowerAllocations.cpp
+++ b/llvm/lib/Transforms/Scalar/LowerAllocations.cpp
@@ -32,7 +32,8 @@
   if (Value *V = SymTab->lookup(PointerType::get(MallocType), "malloc")) {
     MallocMeth = cast<Method>(V);      // Yup, got it
   } else {                             // Nope, add one
-    M->getMethodList().push_back(MallocMeth = new Method(MallocType, "malloc"));
+    M->getMethodList().push_back(MallocMeth = new Method(MallocType, false, 
+                                                         "malloc"));
     Changed = true;
   }
 
@@ -45,7 +46,7 @@
   if (Value *V = SymTab->lookup(PointerType::get(FreeType), "free")) {
     FreeMeth = cast<Method>(V);      // Yup, got it
   } else {                             // Nope, add one
-    M->getMethodList().push_back(FreeMeth = new Method(FreeType, "free"));
+    M->getMethodList().push_back(FreeMeth = new Method(FreeType, false,"free"));
     Changed = true;
   }