8138952: C1: Distinguish between PPC32 and PPC64

Reviewed-by: twisti, goetz, vlivanov
This commit is contained in:
Martin Doerr 2015-11-23 11:06:14 +01:00
parent a51ff63df7
commit 2952cd0bde
12 changed files with 48 additions and 36 deletions

View file

@ -386,7 +386,7 @@ double SharedRuntime::dabs(double f) {
#endif
#if defined(__SOFTFP__) || defined(PPC32)
#if defined(__SOFTFP__) || defined(PPC)
double SharedRuntime::dsqrt(double f) {
return sqrt(f);
}