--- old/src/share/vm/runtime/vframe.hpp Mon Jul 6 14:35:52 2009 +++ new/src/share/vm/runtime/vframe.hpp Mon Jul 6 14:35:52 2009 @@ -401,8 +401,9 @@ // 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(); + _method = methodOop(buffer.read_oop()); + bool dummy_restart = false; //useless information + _bci = buffer.read_bci_and_restart(dummy_restart); assert(_method->is_method(), "checking type of decoded method"); }