PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-dce-2.c
blobb3f50731eea5d0ca1f74f4fc03d86f6358a477af
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-dce3" } */
4 /* We should notice constantness of this function. */
5 static int __attribute__((noinline)) t(int a)
7 return a+1;
9 void q(void)
11 int i = t(1);
12 if (!i)
13 i = t(1);
15 /* There should be no IF conditionals. */
16 /* { dg-final { scan-tree-dump-times "if " 0 "dce3"} } */