diff options
Diffstat (limited to 'src/compiler/frontend.cc')
| -rw-r--r-- | src/compiler/frontend.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/compiler/frontend.cc b/src/compiler/frontend.cc index 9d30b6ad0b..e00fb68621 100644 --- a/src/compiler/frontend.cc +++ b/src/compiler/frontend.cc @@ -1124,6 +1124,11 @@ static CompiledMethod* CompileMethod(Compiler& compiler, /* Allocate Registers using simple local allocation scheme */ SimpleRegAlloc(cu.get()); + if (cu->enable_debug & (1 << kDebugDumpCFG)) { + DumpCFG(cu.get(), "/sdcard/7_post_ralloc_cfg/", true); + } + + /* Go the LLVM path? */ if (cu->gen_bitcode) { // MIR->Bitcode |