https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88109
Andrew Pinski changed:
What|Removed |Added
Ever confirmed|0 |1
Status|UNCONFIRMED
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88109
--- Comment #2 from Zdenek Sojka ---
The same applies for eg. division by zero; doing such vector operation results
in:
$ cat testcase-sanitize.c
int v __attribute__ ((vector_size (8)));
int
main (void)
{
return (v / v)[0];
}
$ x86_64-pc-linux
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88109
--- Comment #1 from Richard Biener ---
I'm not sure if we really want to declare those undefined for the GIMPLE IL.
NB, -ftrapv also doesn't work for those.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88109
Martin Liška changed:
What|Removed |Added
CC||mpolacek at gcc dot gnu.org
Sev