aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitint-80.c
blob: 0ad0935670ad0335664451c7bb1db8473e658320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* PR debug/113637 */
/* { dg-do compile { target bitint } } */
/* { dg-options "-g -std=c23" } */

#if __BITINT_MAXWIDTH__ >= 639
typedef _BitInt(639) B;
#else
typedef _BitInt(63) B;
#endif

void
foo (B n)
{
  extern void bar (int [][n]);
}