Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

8259576: Misplaced curly brace in Matcher::find_shared_post_visit #11

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/matcher.cpp
Expand Up @@ -2405,9 +2405,9 @@ void Matcher::find_shared_post_visit(Node* n, uint opcode) {
n->set_req(2, n->in(3));
n->del_req(3);
break;
}
default:
break;
}
}
}

Expand Down