1 /* PR tree-optimization/23518.
2 make_range used to transform a + 1 < 0 into a < -1 even when a is
3 signed and -fwrapv is given. Make sure that no longer happens. */
6 /* { dg-options "-O2 -fwrapv" } */
10 extern void abort (void);
11 extern void exit (int);
17 if ((a
< 0) || (a
+ 1 < 0))