diff options
author | David S. Miller <davem@davemloft.net> | 2013-11-06 13:01:36 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-11-06 13:23:36 -0800 |
commit | 8d6bb57c44557c344d56653c3380885bf1dcabd7 (patch) | |
tree | 09711b8cd8fbab03c0cb6224b54ce497b3ace0f0 /sysdeps | |
parent | e256c4214c9484873921d4bdb723b842b5627e42 (diff) | |
download | glibc-8d6bb57c44557c344d56653c3380885bf1dcabd7.tar.gz glibc-8d6bb57c44557c344d56653c3380885bf1dcabd7.tar.xz glibc-8d6bb57c44557c344d56653c3380885bf1dcabd7.zip |
Fix build on pre-v9 32-bit Sparc.
We cannot use fnegd in this code, as fnegd was added in v9. Only fnegs exists in v8 and earlier. [BZ #15985] * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd on pre-v9 cpus, use a fnegs+fmovs sequence instead.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/sparc/sparc32/fpu/s_fdim.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/sparc/sparc32/fpu/s_fdim.S b/sysdeps/sparc/sparc32/fpu/s_fdim.S index 2f0c5ce583..22f69ce519 100644 --- a/sysdeps/sparc/sparc32/fpu/s_fdim.S +++ b/sysdeps/sparc/sparc32/fpu/s_fdim.S @@ -30,7 +30,8 @@ ENTRY(__fdim) fbug 1f st %g0, [%sp + 76] ldd [%sp + 72], %f0 - fnegd %f0, %f2 + fnegs %f0, %f2 + fmovs %f1, %f3 1: retl fsubd %f0, %f2, %f0 END(__fdim) |