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

src/share/vm/runtime/frame.cpp

Print this page

        

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