aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/alias-34.c
blob: 363d121df8790d11104d039cf99a23715d7a5e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-O2 -fno-strict-aliasing -fdump-tree-optimized" } */
/* { dg-require-effective-target label_values } */

void foo (int b)
{
  void *p;
lab:
  if (b)
    p = &&lab;
  else
    {
lab2:
      p = &&lab2;
    }
  *(char *)p = 1;
}

/* We should keep the store to the label locations.  */
/* { dg-final { scan-tree-dump " = 1;" "optimized" } } */