diff options
Diffstat (limited to 'runtime/jit/jit.cc')
| -rw-r--r-- | runtime/jit/jit.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jit/jit.cc b/runtime/jit/jit.cc index 12bf79d7ca..1baa613bb5 100644 --- a/runtime/jit/jit.cc +++ b/runtime/jit/jit.cc @@ -467,7 +467,7 @@ bool Jit::MaybeDoOnStackReplacement(Thread* thread,    // Fetch some data before looking up for an OSR method. We don't want thread    // suspension once we hold an OSR method, as the JIT code cache could delete the OSR    // method while we are being suspended. -  CodeItemDataAccessor accessor(method); +  CodeItemDataAccessor accessor(method->DexInstructionData());    const size_t number_of_vregs = accessor.RegistersSize();    const char* shorty = method->GetShorty();    std::string method_name(VLOG_IS_ON(jit) ? method->PrettyMethod() : "");  |