From b371f90f775d93f6b6efbbe9c2c5f0ce22bb6474 Mon Sep 17 00:00:00 2001 From: Aleksey Shipilev Date: Mon, 15 Mar 2021 06:25:08 +0000 Subject: [PATCH] 8263504: Some OutputMachOpcodes fields are uninitialized Reviewed-by: kvn --- src/hotspot/share/adlc/output_h.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hotspot/share/adlc/output_h.cpp b/src/hotspot/share/adlc/output_h.cpp index add6d06b399..4a318131390 100644 --- a/src/hotspot/share/adlc/output_h.cpp +++ b/src/hotspot/share/adlc/output_h.cpp @@ -2136,7 +2136,9 @@ class OutputMachOpcodes : public OutputMap { 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() { }