summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gccas
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-16 16:50:34 +0000
committerChris Lattner <sabre@nondot.org>2003-10-16 16:50:34 +0000
commit3f8b7c24f6f8bda3bd0077392aae5228543f2cff (patch)
treeff1b003ea544012b57d74627aceb4e50f1e86f0c /llvm/tools/gccas
parent50b6858e2e96fa37b40e6eb0ccf76f73e18ab1df (diff)
downloadbcm5719-llvm-3f8b7c24f6f8bda3bd0077392aae5228543f2cff.tar.gz
bcm5719-llvm-3f8b7c24f6f8bda3bd0077392aae5228543f2cff.zip
Unfortunately, it looks like level raise is still needed :(
llvm-svn: 9158
Diffstat (limited to 'llvm/tools/gccas')
-rw-r--r--llvm/tools/gccas/gccas.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp
index 8194fa10c66..929876084d3 100644
--- a/llvm/tools/gccas/gccas.cpp
+++ b/llvm/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
OpenPOWER on IntegriCloud