mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
6787050: assert(n->in(0) == 0L,"no control") with UseCompressedOops on sparcv9
Relax the assert for Sparc. Reviewed-by: never
This commit is contained in:
parent
29488f1216
commit
744c80add4
1 changed files with 3 additions and 1 deletions
|
@ -2192,7 +2192,9 @@ static void final_graph_reshaping_impl( Node *n, Final_Reshape_Counts &fpu ) {
|
|||
|
||||
case Op_DecodeN:
|
||||
assert(!n->in(1)->is_EncodeP(), "should be optimized out");
|
||||
assert(n->in(0) == NULL, "no control");
|
||||
// DecodeN could be pinned on Sparc where it can't be fold into
|
||||
// an address expression, see the code for Op_CastPP above.
|
||||
assert(n->in(0) == NULL || !Matcher::clone_shift_expressions, "no control except on sparc");
|
||||
break;
|
||||
|
||||
case Op_EncodeP: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue