------- Comment #3 from rguenth at gcc dot gnu dot org 2005-11-14 15:40 ------- Reduced testcase:
void abort(void);
int main()
{
int a[10], *p;
p = &a[-1];
if (p >= &a[9])
abort ();
return 0;
}
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24851
