diff options
Diffstat (limited to 'tools/gccas/gccas.cpp')
-rw-r--r-- | tools/gccas/gccas.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index d01e4ed226..e19508fdac 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -64,10 +64,7 @@ int main(int argc, char **argv) { // vector<Pass*> 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 |