summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.wendy/gnu7.c
blob: 6842fd9e681153db95efc1cd5bf1d2b127511fd9 (plain)
1
2
3
4
5
6
7
8
#define Neg -113
static unsigned int ui2 = Neg;
main() {
	if ( ui2/2 == ((unsigned)Neg)/2 )
		printf("Test passed\n");
	else
		printf("Failed...\n");
}