diff options
author | 2015-04-07 20:32:43 +0100 | |
---|---|---|
committer | 2015-04-09 16:47:50 +0100 | |
commit | c6b4dd8980350aaf250f0185f73e9c42ec17cd57 (patch) | |
tree | ef8d73e37abc04aecb430072a8bc463c73398fee /compiler/dex/quick/codegen_util.cc | |
parent | dd97393aca1a3ff2abec4dc4f78d7724300971bc (diff) |
Implement CFI for Optimizing.
CFI is necessary for stack unwinding in gdb, lldb, and libunwind.
Change-Id: I1a3480e3a4a99f48bf7e6e63c4e83a80cfee40a2
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
-rw-r--r-- | compiler/dex/quick/codegen_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc index ff5f735255..9c9205fbb9 100644 --- a/compiler/dex/quick/codegen_util.cc +++ b/compiler/dex/quick/codegen_util.cc @@ -1073,7 +1073,7 @@ Mir2Lir::Mir2Lir(CompilationUnit* cu, MIRGraph* mir_graph, ArenaAllocator* arena pc_rel_temp_(nullptr), dex_cache_arrays_min_offset_(std::numeric_limits<uint32_t>::max()), cfi_(&last_lir_insn_, - cu->compiler_driver->GetCompilerOptions().GetGenerateGDBInformation(), + cu->compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols(), arena), in_to_reg_storage_mapping_(arena) { switch_tables_.reserve(4); |