Skip to content

Commit a0b8445

Browse files
committed
8276846: JDK-8273416 is incomplete for UseSSE=1
Reviewed-by: neliasso, kvn
1 parent a3f710e commit a0b8445

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hotspot/cpu/x86/x86_32.ad

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7204,7 +7204,7 @@ instruct castLL( eRegL dst ) %{
72047204
%}
72057205

72067206
instruct castFF( regF dst ) %{
7207-
predicate(UseSSE >= 2);
7207+
predicate(UseSSE >= 1);
72087208
match(Set dst (CastFF dst));
72097209
format %{ "#castFF of $dst" %}
72107210
ins_encode( /*empty encoding*/ );
@@ -7222,7 +7222,7 @@ instruct castDD( regD dst ) %{
72227222
%}
72237223

72247224
instruct castFF_PR( regFPR dst ) %{
7225-
predicate(UseSSE < 2);
7225+
predicate(UseSSE < 1);
72267226
match(Set dst (CastFF dst));
72277227
format %{ "#castFF of $dst" %}
72287228
ins_encode( /*empty encoding*/ );

0 commit comments

Comments
 (0)