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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr38123.c
blob
b36ad118f4508717b8b82662b570e6d086f9cde1
1
/* PR target/38123 */
2
3
#include <stdarg.h>
4
5
struct
S
{
int
i
;
double
d
; };
6
7
struct
S
8
test
(
char
*
x
,
va_list
ap
)
9
{
10
struct
S s
;
11
s
=
va_arg
(
ap
,
struct
S
);
12
return
s
;
13
}