1 /* { dg-do compile }  */
2 /* { dg-options "-O2" }  */
3 /* { dg-final { scan-assembler-times "#120" 1 } } */
4 
5 extern void foo1 (int);
6 extern void foo2 (int);
7 
t(int x,int y)8 void t (int x, int y)
9 {
10   if (y < 5)
11     foo1 (120);
12   else
13     foo2 (120);
14 }
15