mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 13:11:39 +01:00
fix a serious regression I introduced in my previous patch.
llvm-svn: 68173
This commit is contained in:
parent
d7c837bb4b
commit
1f4b1f7866
@ -2067,7 +2067,8 @@ Module *BitcodeReader::materializeModule(std::string *ErrInfo) {
|
|||||||
if (CallInst* CI = dyn_cast<CallInst>(*UI++))
|
if (CallInst* CI = dyn_cast<CallInst>(*UI++))
|
||||||
UpgradeIntrinsicCall(CI, I->second);
|
UpgradeIntrinsicCall(CI, I->second);
|
||||||
}
|
}
|
||||||
I->first->replaceAllUsesWith(I->second);
|
if (!I->first->use_empty())
|
||||||
|
I->first->replaceAllUsesWith(I->second);
|
||||||
I->first->eraseFromParent();
|
I->first->eraseFromParent();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user