Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr50767.c
blob: 96ab72ebd7bccf456bbca787e9c76385e0783099 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-fno-tree-copy-prop -fno-tree-dominator-opts" } */
struct
S
{
struct
S
*
s
;
};
static
struct
S
*
ss
;
struct
S
*
s
;
void
bar
(
void
);
void
foo
(
void
)
{
for
(;;)
{
s
->
s
=
ss
;
bar
();
}
}