mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
6989297: Integrate additional portability improvements
Reviewed-by: vladidan, dholmes
This commit is contained in:
parent
afc563751f
commit
72616ad2bc
9 changed files with 18 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue