diff options
-rw-r--r-- | llvm/tools/gccas/gccas.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp index d01e4ed226a..e19508fdacd 100644 --- a/llvm/tools/gccas/gccas.cpp +++ b/llvm/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 |