2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr26898-2.c
blob508fde4ce7dc04804823fa1770620c900fc2c00d
1 /* { dg-do run } */
3 #include <limits.h>
5 int a = 0, b = INT_MAX - 1;
6 extern void abort(void);
7 int main()
9 if (a - 1 > b + 1)
10 abort();
11 return 0;