[Bug tree-optimization/124135] [13/14/15/16 Regression] ICE: invalid RHS for gimple memory store: ‘var_decl’ on s390x-linux-gnu
jakub at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Thu Mar 5 16:59:29 GMT 2026
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.
More information about the Gcc-bugs
mailing list