aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-1.c
blob: d0263e3a28760f280fa8ab5967d78c9dbe5a3745 (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 compile } */
/* { dg-options "-O2 -fdump-tree-dse1" } */

int
foo (int a, int b, int c)
{
  int *p;
  if (c)
    p = &a;
  else
    p = &b;

  *p = 3;
  *p = 4;
  return *p;
}


/* We should eliminate both assignments to *p.  */
/* { dg-final { scan-tree-dump-times " = 3" 0 "dse1"} } */
/* { dg-final { scan-tree-dump-times " = 4" 0 "dse1"} } */

/* The return *p should be turned into return 4.  */
/* { dg-final { scan-tree-dump-times " return 4" 1 "dse1"} } */

/* { dg-final { cleanup-tree-dump "dse1" } } */