commit | b73e4bb54d164ffb1773275bb593568aebd790ba | [log] [tgz] |
---|---|---|
author | Dale Johannesen <dalej@apple.com> | Fri Feb 13 02:31:35 2009 +0000 |
committer | Dale Johannesen <dalej@apple.com> | Fri Feb 13 02:31:35 2009 +0000 |
tree | dfbbcc16b625d037dc02f8d2befbaa8d17facae8 | |
parent | 238c69da2e396a758bf102cf6f7b0533db809582 [diff] [blame] |
Remove non-DebugLoc versions of buildMI from Sparc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64435 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Sparc/DelaySlotFiller.cpp b/lib/Target/Sparc/DelaySlotFiller.cpp index f6648a8..15b26c2 100644 --- a/lib/Target/Sparc/DelaySlotFiller.cpp +++ b/lib/Target/Sparc/DelaySlotFiller.cpp
@@ -68,7 +68,7 @@ if (I->getDesc().hasDelaySlot()) { MachineBasicBlock::iterator J = I; ++J; - BuildMI(MBB, J, TII->get(SP::NOP)); + BuildMI(MBB, J, DebugLoc::getUnknownLoc(), TII->get(SP::NOP)); ++FilledSlots; Changed = true; }