[Bug tree-optimization/115959] [15 Regression] rv64gcv ICE: segfault during GIMPLE pass: vect
pinskia at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Tue Jul 16 21:11:49 GMT 2024
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115959
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Ever confirmed|0 |1
Last reconfirmed| |2024-07-16
Status|UNCONFIRMED |NEW
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed. Cleaned up testcase:
```
int a;
_Bool *b;
void f() {
int t = a;
for (int e = 0; e < 2048; e ++)
{
if (!b[e])
t = 0;
}
a = t;
}
```
More information about the Gcc-bugs
mailing list