https://gcc.gnu.org/bugzilla/show_bug.cgi?id=23331
Richard Biener changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-25
04:25 ---
Confirmed.
--
What|Removed |Added
Status|UNCONFIRMED |NEW
E
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-20
13:54 ---
Testcase:
int f(void)
{
int a = 13;
return "a"[a];
}
This should be converted over to:
int f(void)
{
__builtin_trap ();
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23331