PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr21031.c
bloba6f5b6e88481335cb48f6d11143434301dfaf311
1 /* PR tree-optimization/21031
3 Make sure that a != 0 is propagated into the "if" statement. */
5 /* { dg-do compile } */
6 /* { dg-options "-O1 -fdump-tree-forwprop1" } */
8 int
9 foo (int a)
11 int b = a != 0;
12 unsigned char c = b;
13 if (c)
14 return 1;
15 else
16 return 0;
19 /* { dg-final { scan-tree-dump "if \\(a_\[0-9\]+\\(D\\) != 0\\)" "forwprop1" } } */