Skip to content

Commit

Permalink
8305995: Footprint regression from JDK-8224957
Browse files Browse the repository at this point in the history
Reviewed-by: kvn, thartmann
  • Loading branch information
catap authored and TobiHartmann committed Apr 17, 2023
1 parent 02347d0 commit 7551529
Show file tree
Hide file tree
Showing 2 changed files with 1,237 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1310,7 +1310,7 @@ bool Node::dominates(Node* sub, Node_List &nlist) {
} else if (sub == up && sub->is_Region() && sub->req() == 2) {
// Take in(1) path on the way up to 'dom' for regions with only one input
up = sub->in(1);
} else if (sub == up && sub->is_Region() && sub->req() == 3) {
} else if (sub == up && sub->is_Region()) {
// Try both paths for Regions with 2 input paths (it may be a loop head).
// It could give conservative 'false' answer without information
// which region's input is the entry path.
Expand Down
Loading

1 comment on commit 7551529

@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.