blob: cbf1351c4be71f1ad78bcbd1670b0cdc422c04dc [file] [log] [blame]
/* The non-destructive folder was always emitting >= when folding
comparisons to signed_max+1. */
#include <limits.h>
int
main ()
{
unsigned long count = 8;
if (count > INT_MAX)
abort ();
return (0);
}