hotspot/src/share/vm/oops/compiledICHolder.cpp
changeset 18439 725ce18186b3
parent 14579 7f6ce6e3dd80
child 22234 da823d78ad65
equal deleted inserted replaced
18438:9ea6bbfe0b83 18439:725ce18186b3
    46 
    46 
    47 
    47 
    48 // Verification
    48 // Verification
    49 
    49 
    50 void CompiledICHolder::verify_on(outputStream* st) {
    50 void CompiledICHolder::verify_on(outputStream* st) {
    51   guarantee(holder_method()->is_metadata(),   "should be in metaspace");
       
    52   guarantee(holder_method()->is_method(), "should be method");
    51   guarantee(holder_method()->is_method(), "should be method");
    53   guarantee(holder_klass()->is_metadata(),    "should be in metaspace");
       
    54   guarantee(holder_klass()->is_klass(),   "should be klass");
    52   guarantee(holder_klass()->is_klass(),   "should be klass");
    55 }
    53 }