This came up here:
https://github.com/openjdk/jdk/pull/24570#discussion_r2108546984
There seems to be no reason for:
GrowableArray<Node *> memnode_worklist;
to not be:
Unique_Node_List memnode_worklist;
Other uses of GrowableArray in the same file should be checked as well.
https://github.com/openjdk/jdk/pull/24570#discussion_r2108546984
There seems to be no reason for:
GrowableArray<Node *> memnode_worklist;
to not be:
Unique_Node_List memnode_worklist;
Other uses of GrowableArray in the same file should be checked as well.