comparison src/share/vm/ci/ciKlass.cpp @ 3672:5e331d5f760e

removed transition to vm in ci interface
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Fri, 18 Nov 2011 17:01:32 +0100
parents 1d1603768966
children 532be189cf09
comparison
equal deleted inserted replaced
3671:415aa4a73b95 3672:5e331d5f760e
71 // Check to see if the klasses are identical. 71 // Check to see if the klasses are identical.
72 if (this == that) { 72 if (this == that) {
73 return true; 73 return true;
74 } 74 }
75 75
76 VM_ENTRY_MARK; 76 //VM_ENTRY_MARK;
77 Klass* this_klass = get_Klass(); 77 Klass* this_klass = get_Klass();
78 klassOop that_klass = that->get_klassOop(); 78 klassOop that_klass = that->get_klassOop();
79 bool result = this_klass->is_subtype_of(that_klass); 79 bool result = this_klass->is_subtype_of(that_klass);
80 80
81 return result; 81 return result;