Skip to content

Commit 93d8337

Browse files
committed
8276846: JDK-8273416 is incomplete for UseSSE=1
Reviewed-by: aph Backport-of: a0b84453b087ff368a32b93729c5b30fda22ed48
1 parent 6f3cd6b commit 93d8337

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
@@ -7189,7 +7189,7 @@ instruct castLL( eRegL dst ) %{
71897189
%}
71907190

71917191
instruct castFF( regF dst ) %{
7192-
predicate(UseSSE >= 2);
7192+
predicate(UseSSE >= 1);
71937193
match(Set dst (CastFF dst));
71947194
format %{ "#castFF of $dst" %}
71957195
ins_encode( /*empty encoding*/ );
@@ -7207,7 +7207,7 @@ instruct castDD( regD dst ) %{
72077207
%}
72087208

72097209
instruct castFF_PR( regFPR dst ) %{
7210-
predicate(UseSSE < 2);
7210+
predicate(UseSSE < 1);
72117211
match(Set dst (CastFF dst));
72127212
format %{ "#castFF of $dst" %}
72137213
ins_encode( /*empty encoding*/ );

0 commit comments

Comments
 (0)