1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Simplify the autoupgrade interface

llvm-svn: 26475
This commit is contained in:
Chris Lattner 2006-03-02 23:59:12 +00:00
parent c8da528e6c
commit 3c762c1b8f

View File

@ -1865,11 +1865,8 @@ void BytecodeReader::ParseFunctionBody(Function* F) {
if (CallInst* CI = dyn_cast<CallInst>(II)) {
std::map<Function*,Function*>::iterator FI =
upgradedFunctions.find(CI->getCalledFunction());
if (FI != upgradedFunctions.end()) {
Instruction* newI = UpgradeIntrinsicCall(CI,FI->second);
CI->replaceAllUsesWith(newI);
CI->eraseFromParent();
}
if (FI != upgradedFunctions.end())
UpgradeIntrinsicCall(CI, FI->second);
}
}
@ -2444,7 +2441,7 @@ void BytecodeReader::ParseBytecode(BufPtr Buf, unsigned Length,
for (Module::iterator FI = TheModule->begin(), FE = TheModule->end();
FI != FE; ++FI)
if (Function* newF = UpgradeIntrinsicFunction(FI)) {
upgradedFunctions.insert(std::make_pair(FI,newF));
upgradedFunctions.insert(std::make_pair(FI, newF));
FI->setName("");
}