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
/
pr40023.c
blob
93d8f68a5e59c2b34cb990982e203e2c31cb76d3
1
typedef
__builtin_va_list
va_list
;
2
typedef
struct
{
3
va_list
ap
;
4
}
ScanfState
;
5
void
6
GetInt
(
ScanfState
*
state
,
long
llval
)
7
{
8
*
__builtin_va_arg
(
state
->
ap
,
long
*) =
llval
;
9
__builtin_va_end
(
state
->
ap
);
10
}
11