No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / tree-ssa / vrp29.c
blobbace4ffcadfe38bd708ddcb500154ce8b3646ee8
1 /* { dg-do run } */
2 /* { dg-options "-O2" } */
4 extern void abort(void);
6 void decCompareOp (int result)
8 if (result != (int)0x80000000)
10 result = -result;
11 if (result != (int)0x80000001)
12 abort ();
16 int main()
18 decCompareOp (0x7fffffff);
19 return 0;