--- a/hotspot/src/share/vm/classfile/javaClasses.cpp Wed Aug 19 19:05:18 2009 -0700
+++ b/hotspot/src/share/vm/classfile/javaClasses.cpp Thu Aug 20 12:42:57 2009 -0700
@@ -1229,13 +1229,10 @@
// Compiled java method case.
if (decode_offset != 0) {
- bool dummy_reexecute = false;
DebugInfoReadStream stream(nm, decode_offset);
decode_offset = stream.read_int();
method = (methodOop)nm->oop_at(stream.read_int());
- //fill_in_stack_trace does not need the reexecute information which is designed
- //for the deopt to reexecute
- bci = stream.read_bci_and_reexecute(dummy_reexecute);
+ bci = stream.read_bci();
} else {
if (fr.is_first_frame()) break;
address pc = fr.pc();