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

Chris Lattner lattner at cs.uiuc.edu
Thu Oct 16 11:51:11 PDT 2003


Changes in directory llvm/tools/gccas:

gccas.cpp updated: 1.79 -> 1.80

---
Log message:

Unfortunately, it looks like level raise is still needed :(


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

Index: llvm/tools/gccas/gccas.cpp
diff -u llvm/tools/gccas/gccas.cpp:1.79 llvm/tools/gccas/gccas.cpp:1.80
--- llvm/tools/gccas/gccas.cpp:1.79	Wed Oct 15 16:49:57 2003
+++ llvm/tools/gccas/gccas.cpp	Thu Oct 16 11:50:34 2003
@@ -57,8 +57,7 @@
     addPass(PM, createFunctionInliningPass());   // Inline small functions
 
   addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
-  // FIXME: levelraise pass disabled until it can be rewritten at a later date.
-  //addPass(PM, createRaisePointerReferencesPass());// Recover type information
+  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