[llvm-commits] CVS: llvm/tools/gccas/gccas.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Oct 15 16:49:01 PDT 2003


Changes in directory llvm/tools/gccas:

gccas.cpp updated: 1.77 -> 1.78

---
Log message:

The levelraise pass is a broken old piece of crufty code that should be
left on the side of the road without a second thought.

It is preventing forward progress, so for now, we will disable it by default.


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

Index: llvm/tools/gccas/gccas.cpp
diff -u llvm/tools/gccas/gccas.cpp:1.77 llvm/tools/gccas/gccas.cpp:1.78
--- llvm/tools/gccas/gccas.cpp:1.77	Fri Oct 10 13:18:53 2003
+++ llvm/tools/gccas/gccas.cpp	Wed Oct 15 16:48:38 2003
@@ -58,7 +58,8 @@
     addPass(PM, createFunctionInliningPass());   // Inline small functions
 
   addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
-  addPass(PM, createRaisePointerReferencesPass());// Recover type information
+  // FIXME: levelraise pass disabled until it can be rewritten at a later date.
+  //addPass(PM, createRaisePointerReferencesPass());// Recover type information
   addPass(PM, createTailDuplicationPass());      // Simplify cfg by copying code
   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
   addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas





More information about the llvm-commits mailing list