blob: 9e0d3c1a762c7d107f07b6e879b90b88fbcfe856 [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);
}