diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2025-02-25 15:57:53 -0500 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2025-02-25 15:57:53 -0500 |
commit | 2fe5e2af0995a6e6ee2c761e55e7596a3220d07c (patch) | |
tree | e9771264aa6599058ea868fe5476a7cc4bf89543 /scripts/move-if-change | |
parent | 3fd2ff7685e3ee85c8cd2896f28ad62f67d7c483 (diff) | |
download | glibc-master.zip glibc-master.tar.gz glibc-master.tar.bz2 |
A number of fma tests started to fail on hppa when gcc was changed to
use Ranger rather than EVRP. Eventually I found that the value of
a1 + u.d in this is block of code was being computed in FE_TOWARDZERO
mode and not the original rounding mode:
if (TININESS_AFTER_ROUNDING)
{
w.d = a1 + u.d;
if (w.ieee.exponent == 109)
return w.d * 0x1p-108;
}
This caused the exponent value to be wrong and the wrong return path
to be used.
Here we add an optimization barrier after the rounding mode is reset
to ensure that the previous value of a1 + u.d is not reused.
Signed-off-by: John David Anglin <dave.anglin@bell.net>
Diffstat (limited to 'scripts/move-if-change')
0 files changed, 0 insertions, 0 deletions