summaryrefslogtreecommitdiffstats
path: root/tools/gccas
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2002-07-09 19:53:09 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2002-07-09 19:53:09 +0000
commitf8685ebd9dd870ff8890b9ad9763556bd2825f48 (patch)
tree5f465e3ca75d0ba628e9d41bfab47a99e63cf929 /tools/gccas
parent14329b1b51909e2826cac77e609de0bd2ecb4da4 (diff)
downloadexternal_llvm-f8685ebd9dd870ff8890b9ad9763556bd2825f48.zip
external_llvm-f8685ebd9dd870ff8890b9ad9763556bd2825f48.tar.gz
external_llvm-f8685ebd9dd870ff8890b9ad9763556bd2825f48.tar.bz2
Disabling reassociate pass until it is fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2849 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccas')
-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 9458439..634d08c 100644
--- a/tools/gccas/gccas.cpp
+++ b/tools/gccas/gccas.cpp
@@ -65,7 +65,8 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
addPass(PM, createRaisePointerReferencesPass());// Eliminate casts
addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs
- addPass(PM, createReassociatePass()); // Reassociate expressions
+ // Disabling until this is fixed -- Vikram, 7/7/02.
+ // addPass(PM, createReassociatePass()); // Reassociate expressions
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
addPass(PM, createDeadInstEliminationPass()); // Kill InstCombine remnants
addPass(PM, createLICMPass()); // Hoist loop invariants