src/share/vm/runtime/frame.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/frame.cpp	Mon May  9 15:56:02 2011
--- new/src/share/vm/runtime/frame.cpp	Mon May  9 15:56:01 2011

*** 1421,1431 **** --- 1421,1431 ---- strcpy(fv.description, description); _values.append(fv); } ! bool FrameValues::validate() { ! void FrameValues::validate() { _values.sort(compare); bool error = false; FrameValue prev; prev.owner = -1; for (int i = _values.length() - 1; i >= 0; i--) {
*** 1444,1454 **** --- 1444,1454 ---- } } else { prev = fv; } } ! return error; ! assert(!error, "invalid layout"); } void FrameValues::print() { _values.sort(compare);

src/share/vm/runtime/frame.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File