summaryrefslogtreecommitdiff
path: root/compiler/jit/jit_compiler.cc
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2018-12-19 18:45:35 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-12-19 18:45:35 +0000
commit30a8c4b28c8199418dd0a844992604274a7bc9cc (patch)
tree41c74f53ceb4720805d3e9cde8b9aa4ee88e9649 /compiler/jit/jit_compiler.cc
parent2b979929d701ae26b80be6aa42ea4781f141c1d6 (diff)
parent0b21e41260bea6c078c18eba745d43e549230fd0 (diff)
Merge "Pack JIT mini-debug-infos together."
Diffstat (limited to 'compiler/jit/jit_compiler.cc')
-rw-r--r--compiler/jit/jit_compiler.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/jit/jit_compiler.cc b/compiler/jit/jit_compiler.cc
index e57bbfa1e1..93575d7c75 100644
--- a/compiler/jit/jit_compiler.cc
+++ b/compiler/jit/jit_compiler.cc
@@ -146,7 +146,10 @@ extern "C" void jit_types_loaded(void* handle, mirror::Class** types, size_t cou
// (which would have been otherwise used as identifier to remove it later).
AddNativeDebugInfoForJit(Thread::Current(),
/*code_ptr=*/ nullptr,
- elf_file);
+ elf_file,
+ debug::PackElfFileForJIT,
+ compiler_options.GetInstructionSet(),
+ compiler_options.GetInstructionSetFeatures());
}
}