]> git.ipfire.org Git - thirdparty/gcc.git/commit
Fix PR target/99184: Wrong cast from double to 16-bit and 32-bit ints
authorGeorg-Johann Lay <avr@gjlay.de>
Mon, 19 Sep 2022 07:46:58 +0000 (09:46 +0200)
committerRichard Biener <rguenther@suse.de>
Mon, 19 Sep 2022 07:52:12 +0000 (09:52 +0200)
commit57896e8cddd2eb952145fa32ca25635fd63246b4
tree1e94488ffeb78d37bf2d879ed617c0983ced4bbf
parent80a17a91f6f70e946cdbd051cc8b6e87135fc0a8
Fix PR target/99184: Wrong cast from double to 16-bit and 32-bit ints

this patch fixed PR target/99184 which incorrectly rounded during 64-bit
(long) double to 16-bit and 32-bit integers.

The patch just removes the respective roundings from
libf7-asm.sx::to_integer and ::to_unsigned.  Luckily, LibF7 does nowhere
use respective functions internally, the only user is in libf7.c::f7_exp

which reads

   f7_round (qq, qq);
   int16_t q = f7_get_s16 (qq);

so that f7_get_s16() operates on an already rounded value, and therefore
this code works unaltered with or without rounding in to_integer.

PR target/99184
libgcc/config/avr/libf7/
* libf7-asm.sx (to_integer, to_unsigned): Don't round 16-bit
and 32-bit integers.

(cherry picked from commit 0b5b8ac5cb7fe92dd17ae8bd7de84640daa59e84)
libgcc/config/avr/libf7/libf7-asm.sx