src/hotspot/share/c1/c1_LIR.cpp
changeset 50023 bdb627563075
parent 47216 71c04702a3d5
child 51333 f6641fcf7b7e
equal deleted inserted replaced
50022:653343de5e7a 50023:bdb627563075
   915       do_input(opProfileType->_obj);
   915       do_input(opProfileType->_obj);
   916       do_temp(opProfileType->_tmp);
   916       do_temp(opProfileType->_tmp);
   917       break;
   917       break;
   918     }
   918     }
   919   default:
   919   default:
   920     ShouldNotReachHere();
   920     op->visit(this);
   921   }
   921   }
   922 }
   922 }
   923 
   923 
       
   924 void LIR_Op::visit(LIR_OpVisitState* state) {
       
   925   ShouldNotReachHere();
       
   926 }
   924 
   927 
   925 void LIR_OpVisitState::do_stub(CodeStub* stub) {
   928 void LIR_OpVisitState::do_stub(CodeStub* stub) {
   926   if (stub != NULL) {
   929   if (stub != NULL) {
   927     stub->visit(this);
   930     stub->visit(this);
   928   }
   931   }