aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-7.c
blob: 77e4a6246f32f42a07038ae10e169ba09c2c3ee0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-dse1" } */

int glob1, glob2;

int foo1 (void)
{
  glob1 = 0;
  glob2 = 1;
  glob1 = 2;
  glob2 = 3;
  return glob1 + glob2;
}



/* There should only be one assignment to glob1 and glob2, the final
   return statement should just return a constant.  */
/* { dg-final { scan-tree-dump-times "glob1 = " 1 "dse1"} } */
/* { dg-final { scan-tree-dump-times "glob2 = " 1 "dse1"} } */
/* { dg-final { scan-tree-dump-times "return 5" 1 "dse1"} } */

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