mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-25 21:18:19 +00:00
Remove refs to non-DebugLoc version of BuildMI from PowerPC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64431 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -145,13 +145,14 @@ bool PPCBSel::runOnMachineFunction(MachineFunction &Fn) {
|
||||
unsigned CRReg = I->getOperand(1).getReg();
|
||||
|
||||
MachineInstr *OldBranch = I;
|
||||
DebugLoc dl = OldBranch->getDebugLoc();
|
||||
|
||||
// Jump over the uncond branch inst (i.e. $PC+8) on opposite condition.
|
||||
BuildMI(MBB, I, TII->get(PPC::BCC))
|
||||
BuildMI(MBB, I, dl, TII->get(PPC::BCC))
|
||||
.addImm(PPC::InvertPredicate(Pred)).addReg(CRReg).addImm(2);
|
||||
|
||||
// Uncond branch to the real destination.
|
||||
I = BuildMI(MBB, I, TII->get(PPC::B)).addMBB(Dest);
|
||||
I = BuildMI(MBB, I, dl, TII->get(PPC::B)).addMBB(Dest);
|
||||
|
||||
// Remove the old branch from the function.
|
||||
OldBranch->eraseFromParent();
|
||||
|
||||
Reference in New Issue
Block a user