summaryrefslogtreecommitdiff
path: root/tools
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
commitf07c833b4b3dbe2c8b2ca74a530e139e1fe55861 (patch)
treebd910cda0b105604b70c5389dd62a8259212bda3 /tools
parent76590640cf8117f06098018dda463cd0cbb7ac45 (diff)
downloadllvm-f07c833b4b3dbe2c8b2ca74a530e139e1fe55861.tar.gz
llvm-f07c833b4b3dbe2c8b2ca74a530e139e1fe55861.tar.bz2
llvm-f07c833b4b3dbe2c8b2ca74a530e139e1fe55861.tar.xz
Unfortunately, it looks like level raise is still needed :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9158 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/gccas/gccas.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index 8194fa10c6..929876084d 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