changeset 9436:72c0dded42ed

8263504: Some OutputMachOpcodes fields are uninitialized Reviewed-by: kvn
author shade
date Mon, 15 Mar 2021 06:25:08 +0000
parents 6b0109a8a153
children 4aba9ac9c194
files src/share/vm/adlc/output_h.cpp
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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() { }