summaryrefslogtreecommitdiff
path: root/gcc_arm/testsuite/gcc.wendy/gnu8.c
blob: e973d173f3e10193b38c8d1c3ca053f6edcb5cf5 (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");
}