forked from OSchip/llvm-project
When removing a value from GVN's leaders list, don't drop the Next pointer in a corner case.
llvm-svn: 122822
This commit is contained in:
parent
a71d2cc88d
commit
83546f2fe0
|
@ -466,6 +466,7 @@ namespace {
|
|||
NumberTableEntry* Next = Curr->Next;
|
||||
Curr->Val = Next->Val;
|
||||
Curr->BB = Next->BB;
|
||||
Curr->Next = Next->Next;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1693,7 +1694,7 @@ bool GVN::processInstruction(Instruction *I,
|
|||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
uint32_t NextNum = VN.getNextUnusedValueNumber();
|
||||
unsigned Num = VN.lookup_or_add(I);
|
||||
|
||||
|
|
Loading…
Reference in New Issue