src/share/vm/ci/ciInstanceKlass.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6839891 Cdiff src/share/vm/ci/ciInstanceKlass.cpp

src/share/vm/ci/ciInstanceKlass.cpp

Print this page

        

*** 562,572 **** // of _nof_implementors might be out of date with respect // to results returned by instanceKlass::implementor. // This is OK, since any dependencies we decide to assert // will be checked later under the Compile_lock. ciInstanceKlass* ciInstanceKlass::implementor(int n) { ! if (n > implementors_limit) { return NULL; } ciInstanceKlass* impl = _implementors[n]; if (impl == NULL) { if (_nof_implementors > implementors_limit) { --- 562,572 ---- // of _nof_implementors might be out of date with respect // to results returned by instanceKlass::implementor. // This is OK, since any dependencies we decide to assert // will be checked later under the Compile_lock. ciInstanceKlass* ciInstanceKlass::implementor(int n) { ! if (n >= implementors_limit) { return NULL; } ciInstanceKlass* impl = _implementors[n]; if (impl == NULL) { if (_nof_implementors > implementors_limit) {
src/share/vm/ci/ciInstanceKlass.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File