PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-fre-16.c
blobfa5f3719a251fb11fd4b4f6fe5044336119ef5a8
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1" } */
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" "fre1" } } */
18 /* { dg-final { cleanup-tree-dump "fre1" } } */