mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Live-in copies go *after* EH_LABELs.
This will soon be tested by exception handling working at all. llvm-svn: 185615
This commit is contained in:
parent
5b802270ae
commit
7857a6e921
@ -351,7 +351,7 @@ MachineBasicBlock::addLiveIn(unsigned PhysReg, const TargetRegisterClass *RC) {
|
||||
"Only the entry block and landing pads can have physreg live ins");
|
||||
|
||||
bool LiveIn = isLiveIn(PhysReg);
|
||||
iterator I = getFirstNonPHI(), E = end();
|
||||
iterator I = SkipPHIsAndLabels(begin()), E = end();
|
||||
MachineRegisterInfo &MRI = getParent()->getRegInfo();
|
||||
const TargetInstrInfo &TII = *getParent()->getTarget().getInstrInfo();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user