diff options
Diffstat (limited to 'runtime/interpreter/interpreter.cc')
-rw-r--r-- | runtime/interpreter/interpreter.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc index 038405eebc..01b7d4e457 100644 --- a/runtime/interpreter/interpreter.cc +++ b/runtime/interpreter/interpreter.cc @@ -314,7 +314,10 @@ static inline JValue Execute( return ExecuteSwitchImpl<false, false>(self, code_item, shadow_frame, result_register, false); } - bool returned = ExecuteMterpImpl(self, code_item, &shadow_frame, &result_register); + bool returned = ExecuteMterpImpl(self, + code_item->insns_, + &shadow_frame, + &result_register); if (returned) { return result_register; } else { |