mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 08:11:52 +00:00
Fix a bug in my checkin last night that was breaking programs using invoke.
llvm-svn: 12813
This commit is contained in:
parent
d4979e2904
commit
f126f03878
@ -210,7 +210,7 @@ bool ADCE::doADCE() {
|
||||
if (F && AA->onlyReadsMemory(F)) {
|
||||
// The function cannot unwind. Convert it to a call with a branch
|
||||
// after it to the normal destination.
|
||||
std::vector<Value*> Args(II->op_begin()+1, II->op_end());
|
||||
std::vector<Value*> Args(II->op_begin()+3, II->op_end());
|
||||
std::string Name = II->getName(); II->setName("");
|
||||
Instruction *NewCall = new CallInst(F, Args, Name, II);
|
||||
II->replaceAllUsesWith(NewCall);
|
||||
|
Loading…
x
Reference in New Issue
Block a user