diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 8194fa10c66..929876084d3 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -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