mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Remove some redundant tests.
An empty list is not represented as a null pointer. Let TRI do its own shortcuts. llvm-svn: 157702
This commit is contained in:
parent
3578c169bf
commit
0bc2a65aad
@ -1766,9 +1766,7 @@ bool MachineInstr::addRegisterDead(unsigned IncomingReg,
|
||||
// There exists a super-register that's marked dead.
|
||||
if (RegInfo->isSuperRegister(IncomingReg, Reg))
|
||||
return true;
|
||||
if (RegInfo->getSubRegisters(IncomingReg) &&
|
||||
RegInfo->getSuperRegisters(Reg) &&
|
||||
RegInfo->isSubRegister(IncomingReg, Reg))
|
||||
if (RegInfo->isSubRegister(IncomingReg, Reg))
|
||||
DeadOps.push_back(i);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user