# HG changeset patch # User never # Date 1250733275 25200 # Node ID cd18bd5e667c4cfa3beaadae8c310e1a01103889 # Parent d0acbc302e14e106b004946cafee7fc22708f3a8 6873777: FPU control word optimization still performed with SSE Reviewed-by: kvn diff -r d0acbc302e14 -r cd18bd5e667c src/share/vm/opto/compile.cpp --- a/src/share/vm/opto/compile.cpp Mon Aug 17 14:45:02 2009 -0700 +++ b/src/share/vm/opto/compile.cpp Wed Aug 19 18:54:35 2009 -0700 @@ -2533,7 +2533,7 @@ // 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()) ) {