1struct s {
2	int f:2;
3};
4
5static int getf(struct s s) { return s.f; }
6
7/*
8 * check-name: bitfield-sign-unsigned
9 * check-command: test-linearize -fdump-ir=linearize -funsigned-bitfields $file
10 *
11 * check-output-ignore
12 * check-output-contains: zext\\.
13 */
14