From e3a20e733e87928c5ca06468024a428f93253ec7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 21 May 2002 20:05:08 +0000 Subject: [PATCH] Simplify CFG after code generation is done git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2698 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gccas/gccas.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 1a0067e296e..d4c63092620 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... -- 2.34.1