aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/ssa-fre-4.c
blob: d09af7819a8b460d6e2e8866a8ad4be0a5e3e3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-skip-if "" { *-*-* } { "-O0" } { "" } } */
/* { dg-additional-options "-fdump-tree-fre1" } */

int x;
int main()
{
  x = 0;
  if (x)
    {
      for (int i = 0; i < 10; ++i)
	x = i;
    }
  return x;
}

/* { dg-final { scan-tree-dump "return 0;" "fre1" } } */