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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
asan
/
pr83185.c
blob
175d2ce15ffe1a4f748c6142993f8a213c2b04a8
1
/* PR middle-end/83185 */
2
/* { dg-do compile } */
3
4
#include <stdarg.h>
5
6
int
bar
(
void
);
7
8
void
9
foo
(
int
i
, ...)
10
{
11
va_list
aps
[
bar
()];
12
va_start
(
aps
[
4
],
i
);
13
va_end
(
aps
[
4
]);
14
}