6989297: Integrate additional portability improvements

Reviewed-by: vladidan, dholmes
This commit is contained in:
Bob Vandette 2010-10-07 15:12:57 -04:00
parent afc563751f
commit 72616ad2bc
9 changed files with 18 additions and 5 deletions

View file

@ -302,6 +302,9 @@ double SharedRuntime::dabs(double f) {
return (f <= (double)0.0) ? (double)0.0 - f : f;
}
#endif
#if defined(__SOFTFP__) || defined(PPC)
double SharedRuntime::dsqrt(double f) {
return sqrt(f);
}