add bundling! well not really, for now it's just stop-insertion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25593 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/IA64/IA64TargetMachine.cpp b/lib/Target/IA64/IA64TargetMachine.cpp
index 34f1fe5..79377c5 100644
--- a/lib/Target/IA64/IA64TargetMachine.cpp
+++ b/lib/Target/IA64/IA64TargetMachine.cpp
@@ -106,7 +106,7 @@
// Add an instruction selector
// FIXME: reap this option one day: if(EnableDAGIsel)
PM.add(createIA64DAGToDAGInstructionSelector(*this));
-
+
/* XXX not yet. ;)
// Run optional SSA-based machine code optimizations next...
if (!NoSSAPeephole)
@@ -132,6 +132,9 @@
/* XXX no, not just yet */
// PM.add(createIA64PeepholeOptimizerPass());
+ // Make sure everything is bundled happily
+ PM.add(createIA64BundlingPass(*this));
+
if (PrintMachineCode) // Print the register-allocated code
PM.add(createIA64CodePrinterPass(std::cerr, *this));