summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr79499.c
blob: 509549ff2fd7b9126ae8be772b1f49fb58982a3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR middle-end/79499 */
/* { dg-do compile { target split_stack } } */
/* { dg-options "-O2 -fsplit-stack -fno-omit-frame-pointer" } */

struct S { struct S *a, *b; };

void
foo (struct S *x)
{
  do
    x->b = x->a;
  while (x = x->a);
}