1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre" } */
3 
f(int i)4 int f(int i)
5 {
6   if (i < 0)
7     return i/10+ i;
8   return i/10 + i;
9 }
10 
11 /* Hoisting of i/10 + i should make the code straight-line
12    with one division.  */
13 
14 /* { dg-final { scan-tree-dump-times "goto" 0 "pre" } } */
15 /* { dg-final { scan-tree-dump-times " / 10;" 1 "pre" } } */
16