src/share/vm/prims/forte.cpp

Print this page

        

*** 232,244 **** // not yet valid. *method_p = method; if (!method->is_valid_method()) return false; ! intptr_t bcx = fr->interpreter_frame_bcx(); ! ! int bci = method->validate_bci_from_bcx(bcx); // note: bci is set to -1 if not a valid bci *bci_p = bci; return true; } --- 232,243 ---- // not yet valid. *method_p = method; if (!method->is_valid_method()) return false; ! address bcp = fr->interpreter_frame_bcp(); ! int bci = method->validate_bci_from_bcp(bcp); // note: bci is set to -1 if not a valid bci *bci_p = bci; return true; }