Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
g++.target
/
pr124597.C
blob: a4003257ea560f51ebecbc8248922ef7ff3ba0d1 [
file
]
// PR target/124597
// { dg-do compile { target lp64 } }
// Make sure va_end usage works with exception branch.
struct
a
{
a
(
int
);
~
a
();
};
int
b
;
__builtin_ms_va_list c
;
void
d
()
{
a e
(
b
);
__builtin_ms_va_end
(
c
);
}