Skip to content

Commit b371f90

Browse files
committed
8263504: Some OutputMachOpcodes fields are uninitialized
Reviewed-by: kvn
1 parent f7e0a09 commit b371f90

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/hotspot/share/adlc/output_h.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2136,7 +2136,9 @@ class OutputMachOpcodes : public OutputMap {
21362136
public:
21372137
OutputMachOpcodes(FILE *hpp, FILE *cpp, FormDict &globals, ArchDesc &AD)
21382138
: OutputMap(hpp, cpp, globals, AD, "MachOpcodes"),
2139-
begin_inst_chain_rule(-1), end_inst_chain_rule(-1), end_instructions(-1)
2139+
begin_inst_chain_rule(-1), end_inst_chain_rule(-1),
2140+
begin_rematerialize(-1), end_rematerialize(-1),
2141+
end_instructions(-1)
21402142
{};
21412143

21422144
void declaration() { }

0 commit comments

Comments
 (0)