mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-03 03:30:05 +00:00
Simplify condition
This commit is contained in:
parent
19a8a03333
commit
d7d2b67b70
@ -277,7 +277,7 @@ bool has_interfering_store(const ArrayCopyNode* ac, LoadNode* load, PhaseGVN* ph
|
||||
for (uint worklist_idx = 0; worklist_idx < to_visit.size(); worklist_idx++) {
|
||||
Node* mem = to_visit.at(worklist_idx);
|
||||
|
||||
if (mem->is_Proj() && mem->in(0)->is_ArrayCopy() && mem->in(0) == ac) {
|
||||
if (mem->is_Proj() && mem->in(0) == ac) {
|
||||
// Reached the target, so visit what is left on the worklist.
|
||||
continue;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user