Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / ssa-sink-1.c
blob4dc415d438e235d1d8de07f0e8d50801c88273b1
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" } } */
11 /* { dg-final { cleanup-tree-dump "sink" } } */