(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
bitfield-1.c
       1  /* { dg-require-effective-target int128 } */
       2  
       3  struct f
       4  {
       5    __uint128_t t:124;
       6    __uint128_t t1:4;
       7  };
       8  
       9  struct f g(void)
      10  {
      11    struct f t = {1, 2};
      12    return t;
      13  }