libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / bitint-80.c
blob0ad0935670ad0335664451c7bb1db8473e658320
1 /* PR debug/113637 */
2 /* { dg-do compile { target bitint } } */
3 /* { dg-options "-g -std=c23" } */
5 #if __BITINT_MAXWIDTH__ >= 639
6 typedef _BitInt(639) B;
7 #else
8 typedef _BitInt(63) B;
9 #endif
11 void
12 foo (B n)
14 extern void bar (int [][n]);