mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 01:54:47 +02:00
8073624: Fix waring "converting to non-pointer type 'bool' from NULL" in arraycopynode.cpp
Reviewed-by: roland
This commit is contained in:
parent
37cfc9fb6d
commit
3f7a17902e
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ bool ArrayCopyNode::finish_transform(PhaseGVN *phase, bool can_reshape,
|
|||
if (in(TypeFunc::Control) != ctl) {
|
||||
// we can't return new memory and control from Ideal at parse time
|
||||
assert(!is_clonebasic(), "added control for clone?");
|
||||
return NULL;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue