--- old/src/cpu/x86/vm/templateTable_x86.cpp 2017-06-28 15:43:05.000000000 -0700 +++ new/src/cpu/x86/vm/templateTable_x86.cpp 2017-06-28 15:43:05.000000000 -0700 @@ -2622,6 +2622,7 @@ switch (code) { case Bytecodes::_nofast_getfield: code = Bytecodes::_getfield; break; case Bytecodes::_nofast_putfield: code = Bytecodes::_putfield; break; + default: break; } assert(byte_no == f1_byte || byte_no == f2_byte, "byte_no out of range"); @@ -3287,6 +3288,7 @@ case Bytecodes::_fast_dputfield: __ pop(dtos); break; case Bytecodes::_fast_fputfield: __ pop(ftos); break; case Bytecodes::_fast_lputfield: __ pop_l(rax); break; + default: break; } __ bind(L2); }