# HG changeset patch # User shade # Date 1615789508 0 # Node ID 72c0dded42eda52e2fe5bf56fd68e227435d8acb # Parent 6b0109a8a1532c10d223116545f2a2f1b15e7961 8263504: Some OutputMachOpcodes fields are uninitialized Reviewed-by: kvn diff -r 6b0109a8a153 -r 72c0dded42ed src/share/vm/adlc/output_h.cpp --- a/src/share/vm/adlc/output_h.cpp Thu Jan 21 11:58:23 2021 +0000 +++ b/src/share/vm/adlc/output_h.cpp Mon Mar 15 06:25:08 2021 +0000 @@ -2162,7 +2162,9 @@ public: OutputMachOpcodes(FILE *hpp, FILE *cpp, FormDict &globals, ArchDesc &AD) : OutputMap(hpp, cpp, globals, AD, "MachOpcodes"), - begin_inst_chain_rule(-1), end_inst_chain_rule(-1), end_instructions(-1) + begin_inst_chain_rule(-1), end_inst_chain_rule(-1), + begin_rematerialize(-1), end_rematerialize(-1), + end_instructions(-1) {}; void declaration() { }