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