https://gcc.gnu.org/bugzilla/show_bug.cgi?id=124135
--- Comment #17 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
And
void foo (char, __float128 *, int);
int qux (int);
__float128
bar (int x)
{
__float128 a;
if (x)
foo (0, &a, qux (42));
return a;
}
void
baz (int x)
{
bar (x);
}
ICEs on x86_64-linux with -O2 -m32.
