repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
bitint-80.c
blob
0ad0935670ad0335664451c7bb1db8473e658320
1
/* PR debug/113637 */
2
/* { dg-do compile { target bitint } } */
3
/* { dg-options "-g -std=c23" } */
4
5
#if __BITINT_MAXWIDTH__ >= 639
6
typedef
_BitInt
(
639
)
B
;
7
#else
8
typedef
_BitInt
(
63
)
B
;
9
#endif
10
11
void
12
foo
(
B n
)
13
{
14
extern
void
bar
(
int
[][
n
]);
15
}