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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr65802.c
blob
0721ca81bf654803a020247fe3c91df2b569ec04
1
/* { dg-do compile } */
2
/* { dg-options "-O0 -fexceptions" } */
3
/* { dg-require-effective-target exceptions } */
4
5
#include <stdarg.h>
6
7
struct
S
8
{
9
int
(*
m_fn1
) (
void
);
10
}
a
;
11
12
void
13
fn1
(
int
d
, ...)
14
{
15
va_list
c
;
16
va_start
(
c
,
d
);
17
18
{
19
int
*
d
=
va_arg
(
c
,
int
*);
20
21
int
**
e
= &
d
;
22
23
a
.
m_fn1
();
24
}
25
26
a
.
m_fn1
();
27
28
va_end
(
c
);
29
}