summaryrefslogtreecommitdiffstats
path: root/compiler/jni/quick
diff options
context:
space:
mode:
authorDavid Srbecky <dsrbecky@google.com>2015-06-19 18:25:56 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-06-19 18:26:45 +0000
commitdb538d309bc34e025e921a04f10b4ee745bd9f1d (patch)
tree9ff4d516df8d23a62bdb2a573575b31df00c5237 /compiler/jni/quick
parent3e91a44bc9063f7f69b5415e3cf162991f73283f (diff)
parenta26cb57f46fd3f27a930d9d688fe8670c1f24754 (diff)
downloadandroid_art-db538d309bc34e025e921a04f10b4ee745bd9f1d.tar.gz
android_art-db538d309bc34e025e921a04f10b4ee745bd9f1d.tar.bz2
android_art-db538d309bc34e025e921a04f10b4ee745bd9f1d.zip
Merge "ART stack unwinding fixes for libunwind/gdb/lldb." into mnc-dev
Diffstat (limited to 'compiler/jni/quick')
-rw-r--r--compiler/jni/quick/jni_compiler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/jni/quick/jni_compiler.cc b/compiler/jni/quick/jni_compiler.cc
index 0347c5e8c1..4d7d86cce6 100644
--- a/compiler/jni/quick/jni_compiler.cc
+++ b/compiler/jni/quick/jni_compiler.cc
@@ -94,7 +94,7 @@ CompiledMethod* ArtJniCompileMethodInternal(CompilerDriver* driver,
// Assembler that holds generated instructions
std::unique_ptr<Assembler> jni_asm(Assembler::Create(instruction_set));
- jni_asm->cfi().SetEnabled(driver->GetCompilerOptions().GetIncludeCFI());
+ jni_asm->cfi().SetEnabled(driver->GetCompilerOptions().GetGenerateDebugInfo());
// Offsets into data structures
// TODO: if cross compiling these offsets are for the host not the target