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 1a0067e296..d4c6309262 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -88,6 +88,7 @@ int main(int argc, char **argv) { // opened up by them. Passes.add(createInstructionCombiningPass()); Passes.add(createDeadCodeEliminationPass()); // Remove Dead code/vars + Passes.add(createCFGSimplificationPass()); // Merge & remove BBs } Passes.add(new WriteBytecodePass(&Out)); // Write bytecode to file... |