summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.wendy/gnu10.c
blob: 9e445ba8462adf0bb1ebc2d5dc639a2ea36a9005 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Unsigned bitfields now promote to signed ints in expressions, grumble.
 */
main() {
	struct s {unsigned i9:9, i1:1;} x;
	x.i9 = 0;
	if ( x.i9 <= -139 )
		printf("Failed...\n");
	else
		printf("Test passed\n");
}