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-72.c
blob
a3c44fed3559880626cd5fbeea4d90ecfb64e027
1
/* PR middle-end/113410 */
2
/* { dg-do compile { target bitint } } */
3
/* { dg-options "-std=c23" } */
4
5
#if __BITINT_MAXWIDTH__ >= 905
6
void
bar
(
_BitInt
(
905
)
n
,
int
[
n
]);
7
#else
8
void
bar
(
int
n
,
int
[
n
]);
9
#endif
10
11
void
12
foo
(
int
n
)
13
{
14
int
buf
[
n
];
15
bar
(
n
,
buf
);
16
}