mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
Use MachineBasicBlock::isLiveIn.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101144 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5c982949bf
commit
c5e43c958e
@ -656,15 +656,8 @@ static bool UpdateCPSRUse(MachineInstr &MI, bool LiveCPSR) {
|
||||
bool Thumb2SizeReduce::ReduceMBB(MachineBasicBlock &MBB) {
|
||||
bool Modified = false;
|
||||
|
||||
bool LiveCPSR = false;
|
||||
// Yes, CPSR could be livein.
|
||||
for (MachineBasicBlock::const_livein_iterator I = MBB.livein_begin(),
|
||||
E = MBB.livein_end(); I != E; ++I) {
|
||||
if (*I == ARM::CPSR) {
|
||||
LiveCPSR = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
bool LiveCPSR = MBB.isLiveIn(ARM::CPSR);
|
||||
|
||||
MachineBasicBlock::iterator MII = MBB.begin(), E = MBB.end();
|
||||
MachineBasicBlock::iterator NextMII;
|
||||
|
Loading…
Reference in New Issue
Block a user