2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr26763-1.c
blob37054e7a4fbe535bc57962a99674c0e33e816af1
1 /* { dg-do run } */
3 extern void abort(void);
5 int try (int *a)
7 return a + -1 > a;
10 int main(void)
12 int bla[100];
14 if (try (bla + 50))
15 abort ();
17 return 0;