On Sat, Feb 10, 2024 at 11:19:16AM +0100, Jakub Jelinek wrote: > And bitint-24.c case seems to be miscompilation of __floatbitintxf > when built with -O2 -m32, it works fine when compiled with -O0 -m32. > Will address that next week.
Ugh, -O2 -m32 -march=i686 works fine, -O2 -m32 -march=i686 -mtune=generic misbehaves, -O2 -m32 -march=i686 -mtune=generic -fno-ivopts works fine. Will not be fun to debug, the function is large. Jakub