Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20030403-1.c
blobcbf1351c4be71f1ad78bcbd1670b0cdc422c04dc
1 /* The non-destructive folder was always emitting >= when folding
2 comparisons to signed_max+1. */
4 #include <limits.h>
6 int
7 main ()
9 unsigned long count = 8;
11 if (count > INT_MAX)
12 abort ();
14 return (0);