diff options
Diffstat (limited to 'runtime/interpreter/interpreter.cc')
| -rw-r--r-- | runtime/interpreter/interpreter.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc index 0586ad9e76..302551f8dd 100644 --- a/runtime/interpreter/interpreter.cc +++ b/runtime/interpreter/interpreter.cc @@ -303,14 +303,13 @@ static inline JValue Execute( // any value. DCHECK(Runtime::Current()->AreNonStandardExitsEnabled()); JValue ret = JValue(); - bool res = PerformNonStandardReturn<MonitorState::kNoMonitorsLocked>( + PerformNonStandardReturn<MonitorState::kNoMonitorsLocked>( self, shadow_frame, ret, instrumentation, accessor.InsSize(), 0); - DCHECK(res) << "Expected to perform non-standard return!"; return ret; } if (UNLIKELY(self->IsExceptionPending())) { @@ -321,14 +320,13 @@ static inline JValue Execute( JValue ret = JValue(); if (UNLIKELY(shadow_frame.GetForcePopFrame())) { DCHECK(Runtime::Current()->AreNonStandardExitsEnabled()); - bool res = PerformNonStandardReturn<MonitorState::kNoMonitorsLocked>( + PerformNonStandardReturn<MonitorState::kNoMonitorsLocked>( self, shadow_frame, ret, instrumentation, accessor.InsSize(), 0); - DCHECK(res) << "Expected to perform non-standard return!"; } return ret; } |