src/share/vm/runtime/vframe.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File
*** old/src/share/vm/runtime/vframe.hpp	Mon Jul  6 17:13:57 2009
--- new/src/share/vm/runtime/vframe.hpp	Mon Jul  6 17:13:56 2009

*** 400,410 **** --- 400,411 ---- // Decode first part of scopeDesc DebugInfoReadStream buffer(nm(), decode_offset); _sender_decode_offset = buffer.read_int(); _method = methodOop(buffer.read_oop()); _bci = buffer.read_bci(); + bool dummy_restart = false; //useless information + _bci = buffer.read_bci_and_restart(dummy_restart); assert(_method->is_method(), "checking type of decoded method"); } // The native frames are handled specially. We do not rely on ScopeDesc info

src/share/vm/runtime/vframe.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File