Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-sink-9.c
blob509a76330a4d6a59b36c26b372befbf39177cb18
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-sink" } */
4 int foo(int *a, int r, int *b)
6 int ret = 0;
7 *a = 1;
8 if (r == 3)
10 *a = 5;
11 *b = 3;
13 return ret;
16 /* *a = 1 should be sunk to the else block. */
18 /* { dg-final { scan-tree-dump-times "Sinking" 1 "sink" } } */