forked from OSchip/llvm-project
Quiet a compiler warning about unused variable 'ExtVNI'.
llvm-svn: 126815
This commit is contained in:
parent
43766d6f12
commit
68faa2dbbe
|
@ -794,6 +794,7 @@ void LiveIntervals::shrinkToUses(LiveInterval *li) {
|
|||
|
||||
// Extend the live range for VNI to be live at Idx.
|
||||
if (VNInfo *ExtVNI = NewLI.extendInBlock(BlockStart, Idx)) {
|
||||
(void)ExtVNI;
|
||||
assert(ExtVNI == VNI && "Unexpected existing value number");
|
||||
// Is this a PHIDef we haven't seen before?
|
||||
if (!VNI->isPHIDef() || !UsedPHIs.insert(VNI))
|
||||
|
|
Loading…
Reference in New Issue