diff src/share/vm/opto/compile.cpp @ 929: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 046932b72aa2
children 7c57aead6d3e
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()) ) {