[Bug tree-optimization/115753] [15 Regression] ICE: tree check: expected ssa_name, have integer_cst in supportable_indirect_convert_operation, at tree-vect-stmts.cc:14680
pinskia at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Jul 3 03:39:25 GMT 2024
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115753
--- Comment #7 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Here is a float/longlong that fails for both aarch64 and x86_64 (it works on
i686 though):
```
void f(float*);
void
foo1 ()
{
long long t0 = __LONG_LONG_MAX__;
long long t1 = __LONG_LONG_MAX__ - 1;
float tt[2];
tt[0] = t0;
tt[1] = t1;
f(&tt[0]);
}
```
Always useful to have more testcases really :).
More information about the Gcc-bugs
mailing list