mirror of
https://github.com/intel/llvm.git
synced 2026-01-24 16:34:22 +08:00
Disable more of physical register live intervals verification.
llvm-svn: 117762
This commit is contained in:
@@ -609,7 +609,8 @@ MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
|
||||
}
|
||||
|
||||
// Check LiveInts liveness and kill.
|
||||
if (LiveInts && !LiveInts->isNotInMIMap(MI)) {
|
||||
if (TargetRegisterInfo::isVirtualRegister(Reg) &&
|
||||
LiveInts && !LiveInts->isNotInMIMap(MI)) {
|
||||
SlotIndex UseIdx = LiveInts->getInstructionIndex(MI).getUseIndex();
|
||||
if (LiveInts->hasInterval(Reg)) {
|
||||
const LiveInterval &LI = LiveInts->getInterval(Reg);
|
||||
@@ -618,7 +619,7 @@ MachineVerifier::visitMachineOperand(const MachineOperand *MO, unsigned MONum) {
|
||||
*OS << UseIdx << " is not live in " << LI << '\n';
|
||||
}
|
||||
// TODO: Verify isKill == LI.killedAt.
|
||||
} else if (TargetRegisterInfo::isVirtualRegister(Reg)) {
|
||||
} else {
|
||||
report("Virtual register has no Live interval", MO, MONum);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user