1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix a bug introduced by "internal linkage" work.

llvm-svn: 1415
This commit is contained in:
Chris Lattner 2001-12-04 18:01:49 +00:00
parent 8ec5ceb110
commit 7059b60173

View File

@ -32,7 +32,8 @@ bool LowerAllocations::doPassInitialization(Module *M) {
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 @@ bool LowerAllocations::doPassInitialization(Module *M) {
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;
}