changeset 1160:cd18bd5e667c

6873777: FPU control word optimization still performed with SSE Reviewed-by: kvn
author never
date Wed, 19 Aug 2009 18:54:35 -0700
parents d0acbc302e14
children 357d4e2eb4dd
files src/share/vm/opto/compile.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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()) ) {