Sign in
gnu
/
gcc
/
fba228e259dd5112851527f2dbb62c5601100985
/
.
/
gcc
/
testsuite
/
gcc.target
/
arm
/
headmerge-1.c
blob: 319ccd254626de991d9a5cbc620432519971e970 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -mno-long-calls" } */
/* { dg-final { scan-assembler-times "#120" 1 } } */
extern
void
foo1
(
int
);
extern
void
foo2
(
int
);
void
t
(
int
x
,
int
y
)
{
if
(
y
<
5
)
foo1
(
120
);
else
foo2
(
120
);
}