diff options
author | David Srbecky <dsrbecky@google.com> | 2015-04-12 11:40:39 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2015-04-13 21:24:12 +0100 |
commit | 8dc7324da5bd0f2afd2ab558ab04882329a61fe8 (patch) | |
tree | 245ce4265cc31990fa6d2f6e792ccd9d44af1dc1 /compiler/optimizing/optimizing_compiler.cc | |
parent | 4af290af4e89cfbc3a4e1ada79909ccee353361a (diff) | |
download | android_art-8dc7324da5bd0f2afd2ab558ab04882329a61fe8.tar.gz android_art-8dc7324da5bd0f2afd2ab558ab04882329a61fe8.tar.bz2 android_art-8dc7324da5bd0f2afd2ab558ab04882329a61fe8.zip |
Add --include-cfi compiler option.
Decouple generation of CFI from the rest of debug symbols.
This makes it possible to generate oat with CFI but without
the rest of debug symbols.
This is in line with intention of the .eh_frame section.
The section does not have the .debug_ prefix because it
is considered somewhat different to the rest of debug symbols.
Change-Id: I32816ecd4f30ac4e0dc69d69a4993e349c737f96
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
-rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index c2b5c997f4..56cea8aba7 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -516,7 +516,7 @@ CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_ite return nullptr; } codegen->GetAssembler()->cfi().SetEnabled( - compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols()); + compiler_driver->GetCompilerOptions().GetIncludeCFI()); PassInfoPrinter pass_info_printer(graph, method_name.c_str(), |