summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/IA64/IA64Bundling.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2009-02-13 02:34:39 +0000
committerDale Johannesen <dalej@apple.com>2009-02-13 02:34:39 +0000
commit3a8bd17fdb58b4b1fb3a14a55bd506ceb54a68a6 (patch)
tree94bbe158e41f80ef9cecda5acb20ad768ce4c54f /llvm/lib/Target/IA64/IA64Bundling.cpp
parent9bba902c83d31b324a3108b36f9eac792f894598 (diff)
downloadbcm5719-llvm-3a8bd17fdb58b4b1fb3a14a55bd506ceb54a68a6.tar.gz
bcm5719-llvm-3a8bd17fdb58b4b1fb3a14a55bd506ceb54a68a6.zip
Remove non-DebugLoc versions of BuildMI from IA64, Mips.
llvm-svn: 64438
Diffstat (limited to 'llvm/lib/Target/IA64/IA64Bundling.cpp')
-rw-r--r--llvm/lib/Target/IA64/IA64Bundling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/IA64/IA64Bundling.cpp b/llvm/lib/Target/IA64/IA64Bundling.cpp
index ebf93b9d1ac..3a9ba6ca3f6 100644
--- a/llvm/lib/Target/IA64/IA64Bundling.cpp
+++ b/llvm/lib/Target/IA64/IA64Bundling.cpp
@@ -104,7 +104,7 @@ bool IA64BundlingPass::runOnMachineBasicBlock(MachineBasicBlock &MBB) {
if(! (CurrentReads.empty() && CurrentWrites.empty()) ) {
// there is a conflict, insert a stop and reset PendingRegWrites
- CurrentInsn = BuildMI(MBB, CurrentInsn,
+ CurrentInsn = BuildMI(MBB, CurrentInsn, CurrentInsn->getDebugLoc(),
TM.getInstrInfo()->get(IA64::STOP), 0);
PendingRegWrites=OrigWrites; // carry over current writes to next insn
Changed=true; StopBitsAdded++; // update stats
OpenPOWER on IntegriCloud