Unfortunately, it looks like level raise is still needed :(
authorChris Lattner <sabre@nondot.org>
Thu, 16 Oct 2003 16:50:34 +0000 (16:50 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 16 Oct 2003 16:50:34 +0000 (16:50 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9158 91177308-0d34-0410-b5e6-96231b3b80d8

tools/gccas/gccas.cpp

index 8194fa10c66f0e5bad7bc6306899c0bbfcafe398..929876084d383d618d5ff53f7cd212345f427963 100644 (file)
@@ -57,8 +57,7 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
     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