diff options
Diffstat (limited to 'runtime/interpreter/interpreter.cc')
-rw-r--r-- | runtime/interpreter/interpreter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc index b5e52388b8..67644d66cd 100644 --- a/runtime/interpreter/interpreter.cc +++ b/runtime/interpreter/interpreter.cc @@ -445,7 +445,7 @@ void EnterInterpreterFromInvoke(Thread* self, method->ThrowInvocationTimeError(); return; } else { - DCHECK(method->IsNative()); + DCHECK(method->IsNative()) << method->PrettyMethod(); num_regs = num_ins = ArtMethod::NumArgRegisters(method->GetShorty()); if (!method->IsStatic()) { num_regs++; |