PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-sink-1.c
blob411585a6dc44e3b9977b4b2c06f82a8a65087e2c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-sink-stats" } */
3 int
4 foo (int a, int b, int c)
6 int x = a * b;
7 return c ? x : a;
9 /* We should sink the x = a * b calculation into the branch that returns x. */
10 /* { dg-final { scan-tree-dump-times "Sunk statements: 1" 1 "sink" } } */