Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr83482.C
blob: 5fa1ab1c1523b25d35724993ce54e964122c906c [
file
] [
log
] [
blame
]
// PR tree-optimization/83482
// { dg-do compile }
int
_setjmp
(
void
**);
void
*
buf
[
64
];
void
a
();
struct
b
{
virtual
long
c
()
{
return
0L
;
}
void
m_fn2
()
{
c
();
}
}
d
;
void
e
()
{
d
.
m_fn2
();
try
{
a
();
_setjmp
(
0
);
}
catch
(...)
{
}
}