comparison src/share/vm/oops/compiledICHolder.cpp @ 11173:6b0fd0964b87

Merge with http://hg.openjdk.java.net/hsx/hsx25/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Wed, 31 Jul 2013 11:00:54 +0200
parents e0c9a1d29eb4
children de6a9e811145
comparison
equal deleted inserted replaced
10912:4ea54634f03e 11173:6b0fd0964b87
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 }