src/share/vm/code/nmethod.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6920293 Cdiff src/share/vm/code/nmethod.cpp

src/share/vm/code/nmethod.cpp

Print this page

        

*** 2008,2018 **** method()->print_codes(); print_code(); print_pcs(); } #endif ! guarantee(cont_offset != 0, "unhandled implicit exception in compiled code"); return instructions_begin() + cont_offset; } --- 2008,2021 ---- method()->print_codes(); print_code(); print_pcs(); } #endif ! if (cont_offset == 0) { ! // Let the normal error handling report the exception ! return NULL; ! } return instructions_begin() + cont_offset; }
src/share/vm/code/nmethod.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File