1 /* PR middle-end/89091 */
2 /* { dg-do compile { target int128 } } */
3 
4 struct S { unsigned __int128 s : 65; };
5 
6 int
foo(struct S * x,int y)7 foo (struct S *x, int y)
8 {
9   return y && x->s;
10 }
11