summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/20040721-1.c
blob: 66fcae5a97ac68eac9e3133155891d4a0903e8f3 (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
27
28
/* { dg-do compile } */
/* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-store_ccp-vops" } */

/* Test to check whether global variables are being
   constant propagated. */

int G;

foo (int i)
{
   if (i > 0)
     G = 3;
   else
     G = 3;

   if (G != 3)
     link_error ();
}

main ()
{
   foo (0);
   return 0;
}

/* There should be no G on the RHS of an assignment. */
/* { dg-final { scan-tree-dump-times "= G;" 0 "store_ccp"} } */
/* { dg-final { cleanup-tree-dump "store_ccp" } } */