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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69162.c
blob
45644bd2fe50b6b7be1fd59393143d267fdb1766
1
/* PR tree-optimization/69162 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
#include <stdarg.h>
6
7
int
8
foo
(
void
*
a
)
9
{
10
va_list
*
b
=
a
;
11
return
va_arg
(*
b
,
int
);
12
}