diff options
Diffstat (limited to 'tools/gccas/gccas.cpp')
-rw-r--r-- | tools/gccas/gccas.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 52449a8630..d01e4ed226 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -64,6 +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 |