aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitint-67.c
blob: fefa33ab9f7d725dba3cf1e4bdc226992953aa94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR tree-optimization/113316 */
/* { dg-do compile { target bitint575 } } */
/* { dg-options "-std=c23 -O2 -w" } */

void bar (_BitInt(535) y);

void
foo (void)
{
  _BitInt(535) y;
  bar (y);
}