]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/tree-ssa/ssa-dce-2.c
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-dce-2.c
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-dce3" } */
3
4 /* We should notice constantness of this function. */
5 int t(int a)
6 {
7 return a+1;
8 }
9 q()
10 {
11 int i = t(1);
12 if (!i)
13 i = t(1);
14 }
15 /* There should be no IF conditionals. */
16 /* { dg-final { scan-tree-dump-times "if " 0 "dce3"} } */