[llvm-commits] CVS: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp

Alkis Evlogimenos alkis at cs.uiuc.edu
Sat Feb 14 18:04:02 PST 2004


Changes in directory llvm/lib/Target/PowerPC:

PowerPCTargetMachine.cpp updated: 1.5 -> 1.6

---
Log message:

Add back machine code deleter pass until we get a MachineCode pass
that will be responsible for the creation of MachineFunctions and will
be required by all MachineFunctionPass passes.


---
Diffs of the changes:  (+1 -0)

Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.5 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.6
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.5	Wed Feb 11 20:27:10 2004
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp	Sat Feb 14 18:03:15 2004
@@ -45,6 +45,7 @@
   PM.add(createRegisterAllocator());
   PM.add(createPrologEpilogCodeInserter());
   // <insert assembly code output passes here>
+  PM.add(createMachineCodeDeleter());
   return true; // change to `return false' when this actually works.
 }
 





More information about the llvm-commits mailing list