blob: 7d0b73f4776f458ebbbfc7b473ad00ed652ccdee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* PR middle-end/112511 */
/* { dg-do compile { target bitint } } */
/* { dg-options "-O2" } */
struct T { _BitInt(22) a; };
void
bar (struct T t)
{
}
void
foo (void)
{
struct T t;
bar (t);
}
|