aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-6.c
blob: 18a9d9b895ae2ce4af3230055f0a39508f3c1eef (plain)
1
2
3
4
5
6
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1-details" } */

 int i; int foo(void) { i = 2; int j = i * 2; int k = i + 2; return j == k; }
/* { dg-final { scan-tree-dump-times "Replaced " 6 "fre1" } } */
/* { dg-final { cleanup-tree-dump "fre1" } } */