Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20030403-1.c
blob: 9e9df8bf9dde798a5262c86ae5ac036ecff2be77 [
file
] [
log
] [
blame
]
/* The non-destructive folder was always emitting >= when folding
comparisons to signed_max+1. */
#include
<limits.h>
void
abort
(
void
);
int
main
()
{
unsigned
long
count
=
8
;
if
(
count
>
INT_MAX
)
abort
();
return
(
0
);
}