Fix register usage in fabs(3) for powerpcspe

This still used the FPU register definition, which gcc converted to using %r1
(stack register).  Fix to use %r3.
This commit is contained in:
Justin Hibbits 2018-07-24 22:05:55 +00:00
parent adc9dcf3e3
commit 544db45f84
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=336689

View File

@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$");
* double fabs(double)
*/
ENTRY(fabs)
efdabs %f1,%f1
efdabs %r3,%r3
blr
END(fabs)