< prev index next >

src/hotspot/share/opto/library_call.cpp

Print this page

        

@@ -1725,11 +1725,11 @@
 }
 
 //--------------------------round_double_node--------------------------------
 // Round a double node if necessary.
 Node* LibraryCallKit::round_double_node(Node* n) {
-  if (Matcher::strict_fp_requires_explicit_rounding && UseSSE <= 1)
+  if (Matcher::strict_fp_requires_explicit_rounding X86_ONLY(&& UseSSE <= 1))
     n = _gvn.transform(new RoundDoubleNode(0, n));
   return n;
 }
 
 //------------------------------inline_math-----------------------------------
< prev index next >