OSDN Git Service

PR target/48496
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / arm / headmerge-1.c
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
8 void t (int x, int y)
9 {
10   if (y < 5)
11     foo1 (120);
12   else
13     foo2 (120);
14 }