mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
6873777: FPU control word optimization still performed with SSE
Reviewed-by: kvn
This commit is contained in:
parent
cc01c0f4f6
commit
0217f432c2
1 changed files with 1 additions and 1 deletions
|
@ -2533,7 +2533,7 @@ bool Compile::final_graph_reshaping() {
|
|||
|
||||
// If original bytecodes contained a mixture of floats and doubles
|
||||
// check if the optimizer has made it homogenous, item (3).
|
||||
if( Use24BitFPMode && Use24BitFP &&
|
||||
if( Use24BitFPMode && Use24BitFP && UseSSE == 0 &&
|
||||
frc.get_float_count() > 32 &&
|
||||
frc.get_double_count() == 0 &&
|
||||
(10 * frc.get_call_count() < frc.get_float_count()) ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue