Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-16.c
blob56d85e58e7f994a3e10052e114a03610862168fa
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre" } */
4 /* FRE should be able to combine i and j and perform simplification
5 on the condition. */
7 extern void link_error (void);
8 int i;
9 int foo(int b, int c)
11 i = b + 1;
12 int j = i - 1;
13 if (b != j)
14 link_error ();
17 /* { dg-final { scan-tree-dump-not "link_error" "fre" } } */
18 /* { dg-final { cleanup-tree-dump "fre" } } */