mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Fix a bug where we were implicitly assuming that there would be at least
one terminator instruction in each basic block. llvm-svn: 11714
This commit is contained in:
parent
cc9a188e0a
commit
56a7886c8a
@ -160,7 +160,7 @@ namespace {
|
||||
/// the virtual register slot specified by VirtReg. It then updates the RA
|
||||
/// data structures to indicate the fact that PhysReg is now available.
|
||||
///
|
||||
void spillVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
|
||||
void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
|
||||
unsigned VirtReg, unsigned PhysReg);
|
||||
|
||||
/// spillPhysReg - This method spills the specified physical register into
|
||||
@ -258,7 +258,7 @@ void RA::removePhysReg(unsigned PhysReg) {
|
||||
/// virtual register slot specified by VirtReg. It then updates the RA data
|
||||
/// structures to indicate the fact that PhysReg is now available.
|
||||
///
|
||||
void RA::spillVirtReg(MachineBasicBlock &MBB, MachineInstr *I,
|
||||
void RA::spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
||||
unsigned VirtReg, unsigned PhysReg) {
|
||||
assert(VirtReg && "Spilling a physical register is illegal!"
|
||||
" Must not have appropriate kill for the register or use exists beyond"
|
||||
|
Loading…
Reference in New Issue
Block a user