From 2409ddb5b2f79f0430bbc718805ab59a9f1f8da3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 26 Nov 2001 19:37:43 +0000 Subject: [PATCH] -raise includes constprop and dce git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1397 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gccas/gccas.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index d01e4ed226a..e19508fdacd 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -64,10 +64,7 @@ int main(int argc, char **argv) { // vector Passes; Passes.push_back(new CleanupGCCOutput()); // Fix gccisms - Passes.push_back(new opt::ConstantPropogation());// Trivial const prop Passes.push_back(new RaisePointerReferences()); // Fix general low level code - Passes.push_back(new opt::ConstantPropogation());// Trivial const prop - Passes.push_back(new opt::DeadCodeElimination());// Trivial DCE Passes.push_back(new ConstantMerge()); // Merge dup global constants // Run our queue of passes all at once now, efficiently. This form of -- 2.34.1