aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr89091.c
blob: 98967245e890ff93be2a536ed0e39a3cb0039ec5 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR middle-end/89091 */
/* { dg-do compile { target int128 } } */

struct S { unsigned __int128 s : 65; };

int
foo (struct S *x, int y)
{
  return y && x->s;
}