tcc-65816/test/tests/20030403-1.c
2017-06-09 13:52:12 +02:00

17 lines
221 B
C

/* 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);
}