aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr59374-2.c
blob: d791b987ef61aa76581ab91acc911e452187fb18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* { dg-do run } */
/* { dg-additional-options "-ftree-slp-vectorize" } */

extern void abort (void);

static struct X { void *a; void *b; } a, b;
static struct X *p;

void __attribute__((noinline))
foo (void)
{
  void *tem = a.b;
  p->b = (void *)0;
  b.b = tem;
  b.a = a.a;
}

int main()
{
  p = &a;
  a.b = &a;
  foo ();
  if (b.b != &a)
    abort ();
  return 0;
}