Sign in
gnu
/
gcc
/
57ea00136418991e847e46a6946a81a1df70c9a4
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.other
/
cleanup1.C
blob: 27eb8ede486b3672c2779e397f0cdf78d19f8327 [
file
] [
log
] [
blame
]
// { dg-do run }
// Bug: fold is too eager about pushing down CLEANUP_POINT_EXPR.
int
d
;
struct
A
{
A
()
{
}
~
A
()
{
d
=
1
;
}
};
int
f
(
const
A
&
a
)
{
return
1
;
}
int
main
()
{
if
(
f
(
A
())
&&
d
==
0
)
return
0
;
return
1
;
}