From: Venkatraman Govindaraju Date: Tue, 30 Jul 2013 02:26:29 +0000 (+0000) Subject: [Sparc] Use call's debugloc for the unimp instruction. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=80cdaf35abc528ee00bd49486d455436ec049581;p=oota-llvm.git [Sparc] Use call's debugloc for the unimp instruction. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187402 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/Sparc/DelaySlotFiller.cpp b/lib/Target/Sparc/DelaySlotFiller.cpp index b93f5e4d7ac..b101751e707 100644 --- a/lib/Target/Sparc/DelaySlotFiller.cpp +++ b/lib/Target/Sparc/DelaySlotFiller.cpp @@ -137,7 +137,7 @@ bool Filler::runOnMachineBasicBlock(MachineBasicBlock &MBB) { MachineBasicBlock::iterator J = MI; ++J; // skip the delay filler. assert (J != MBB.end() && "MI needs a delay instruction."); - BuildMI(MBB, ++J, I->getDebugLoc(), + BuildMI(MBB, ++J, MI->getDebugLoc(), TII->get(SP::UNIMP)).addImm(structSize); } }