aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-15 21:48:38 +0000
committerChris Lattner <sabre@nondot.org>2003-10-15 21:48:38 +0000
commit76a1bf9eb90af65b40674ff28d01c94cf4ef5c79 (patch)
treeb8ae82ad3d297ac2525742eb41fe2d892f116524
parent53e557d670b123adf954992fb8eeeef2118eb17d (diff)
downloadexternal_llvm-76a1bf9eb90af65b40674ff28d01c94cf4ef5c79.zip
external_llvm-76a1bf9eb90af65b40674ff28d01c94cf4ef5c79.tar.gz
external_llvm-76a1bf9eb90af65b40674ff28d01c94cf4ef5c79.tar.bz2
The levelraise pass is a broken old piece of crufty code that should be
left on the side of the road without a second thought. It is preventing forward progress, so for now, we will disable it by default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9140 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/gccas/gccas.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp
index 2cd408a..8388c9b 100644
--- a/tools/gccas/gccas.cpp
+++ b/tools/gccas/gccas.cpp
@@ -58,7 +58,8 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
addPass(PM, createFunctionInliningPass()); // Inline small functions
addPass(PM, createInstructionCombiningPass()); // Cleanup code for raise
- addPass(PM, createRaisePointerReferencesPass());// Recover type information
+ // FIXME: levelraise pass disabled until it can be rewritten at a later date.
+ //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