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