hotspot/src/share/vm/runtime/sharedRuntime.cpp
changeset 6965 4ef36b2a6a3a
parent 6463 f4362c8da849
child 7397 5b173b4ca846
--- a/hotspot/src/share/vm/runtime/sharedRuntime.cpp	Thu Sep 30 12:05:08 2010 -0400
+++ b/hotspot/src/share/vm/runtime/sharedRuntime.cpp	Thu Oct 07 15:12:57 2010 -0400
@@ -302,6 +302,9 @@
   return (f <= (double)0.0) ? (double)0.0 - f : f;
 }
 
+#endif
+
+#if defined(__SOFTFP__) || defined(PPC)
 double SharedRuntime::dsqrt(double f) {
   return sqrt(f);
 }