Skip to content

Commit

Permalink
8263504: Some OutputMachOpcodes fields are uninitialized
Browse files Browse the repository at this point in the history
Reviewed-by: kvn
  • Loading branch information
shipilev committed Mar 15, 2021
1 parent f7e0a09 commit b371f90
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/hotspot/share/adlc/output_h.cpp
Expand Up @@ -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() { }
Expand Down

1 comment on commit b371f90

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.