Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr45449.c
blob: 61ddcbc424a022e70905a99066b60abee565538c [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-pre -fno-tree-pta -fcompare-debug" } */
/* { dg-xfail-if "" { powerpc-ibm-aix* } } */
struct
S
{
};
void
baz
(
void
)
{
struct
S s
;
&
s
;
}
int
bar
(
void
);
void
foo
(
void
)
{
if
(
bar
())
baz
();
}