libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / forwprop-16.c
blob1bef7e7a31f6575a0ffe371840f320650fa5ac2e
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-forwprop1" } */
4 int foo (double xx, double xy)
6 int p = xx < xy;
7 int np = !p;
8 if (np)
9 return 5;
10 return 2;
13 /* { dg-final { scan-tree-dump "if \\\(x" "forwprop1" } } */