Skip to content

Commit

Permalink
Address constructor order issue for C2OptAccess
Browse files Browse the repository at this point in the history
  • Loading branch information
neethu-prasad committed Jul 30, 2024
1 parent 668f8c6 commit 490c381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/gc/shared/c2/barrierSetC2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ class C2OptAccess: public C2Access {
public:
C2OptAccess(PhaseGVN& gvn, Node* ctl, MergeMemNode* mem, DecoratorSet decorators,
BasicType type, Node* base, C2AccessValuePtr& addr) :
C2Access(decorators, base, addr, type),
C2Access(decorators, type, base, addr),
_gvn(gvn), _mem(mem), _ctl(ctl) {
fixup_decorators();
}
Expand Down

0 comments on commit 490c381

Please sign in to comment.