src/hotspot/share/interpreter/bytecodeInterpreter.cpp
changeset 58177 4932dce35882
parent 57959 6b539901e79e
child 58679 9c3209ff7550
child 59069 e0d59f0c2b7d
equal deleted inserted replaced
58176:470af058bd5f 58177:4932dce35882
  2434         if (result == NULL) {
  2434         if (result == NULL) {
  2435           CALL_VM(InterpreterRuntime::resolve_ldc(THREAD, (Bytecodes::Code) opcode),
  2435           CALL_VM(InterpreterRuntime::resolve_ldc(THREAD, (Bytecodes::Code) opcode),
  2436                   handle_exception);
  2436                   handle_exception);
  2437           result = THREAD->vm_result();
  2437           result = THREAD->vm_result();
  2438         }
  2438         }
  2439         if (oopDesc::equals(result, Universe::the_null_sentinel()))
  2439         if (result == Universe::the_null_sentinel())
  2440           result = NULL;
  2440           result = NULL;
  2441 
  2441 
  2442         VERIFY_OOP(result);
  2442         VERIFY_OOP(result);
  2443         SET_STACK_OBJECT(result, 0);
  2443         SET_STACK_OBJECT(result, 0);
  2444         UPDATE_PC_AND_TOS_AND_CONTINUE(incr, 1);
  2444         UPDATE_PC_AND_TOS_AND_CONTINUE(incr, 1);