mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Preserve PHIDef bits in cloned values during splitting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117405 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7e13efad38
commit
79c0262fa8
@ -321,6 +321,10 @@ VNInfo *LiveIntervalMap::defValue(const VNInfo *ParentVNI, SlotIndex Idx) {
|
||||
// Create a new value.
|
||||
VNInfo *VNI = li_->getNextValue(Idx, 0, lis_.getVNInfoAllocator());
|
||||
|
||||
// Preserve the PHIDef bit.
|
||||
if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
|
||||
VNI->setIsPHIDef(true);
|
||||
|
||||
// Use insert for lookup, so we can add missing values with a second lookup.
|
||||
std::pair<ValueMap::iterator,bool> InsP =
|
||||
valueMap_.insert(makeVV(ParentVNI, Idx == ParentVNI->def ? VNI : 0));
|
||||
|
Loading…
x
Reference in New Issue
Block a user