diff -r ac916fea6ec7 -r d84f06a0cae1 src/hotspot/share/runtime/vmStructs.cpp --- a/src/hotspot/share/runtime/vmStructs.cpp Tue Apr 24 12:20:10 2018 -0700 +++ b/src/hotspot/share/runtime/vmStructs.cpp Tue Apr 24 15:07:20 2018 -0700 @@ -1000,6 +1000,8 @@ c2_nonstatic_field(MachIfNode, _prob, jfloat) \ c2_nonstatic_field(MachIfNode, _fcnt, jfloat) \ \ + c2_nonstatic_field(MachJumpNode, _probs, jfloat*) \ + \ c2_nonstatic_field(CallNode, _entry_point, address) \ \ c2_nonstatic_field(CallJavaNode, _method, ciMethod*) \ @@ -1663,6 +1665,7 @@ declare_c2_type(MachNullCheckNode, MachIdealNode) \ declare_c2_type(MachProjNode, ProjNode) \ declare_c2_type(MachIfNode, MachNode) \ + declare_c2_type(MachJumpNode, MachNode) \ declare_c2_type(MachFastLockNode, MachNode) \ declare_c2_type(MachReturnNode, MachNode) \ declare_c2_type(MachSafePointNode, MachReturnNode) \