* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-sink-7.c
blobec3288f4e69a0956ae5c82427b10dd526a592cf6
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-sink" } */
4 int foo(int *a, int r, short *b)
6 int ret = 0;
7 *a = 1;
8 if (r == 3)
9 *a = 5;
10 else
11 ret = r + 20;
12 *b = 9;
13 return ret;
16 /* *a = 1 should be sunk to the else block. */
18 /* { dg-final { scan-tree-dump-times "Sinking" 1 "sink" } } */