rt_gccstream/gcc/testsuite/gcc.target/mips/near-far-2.c

21 lines
642 B
C

/* { dg-do compile } */
/* { dg-options "-mno-long-calls addressing=absolute" } */
extern int long_call_func () __attribute__((long_call));
extern int far_func () __attribute__((far));
extern int near_func () __attribute__((near));
extern int normal_func ();
int test ()
{
return (long_call_func ()
+ far_func ()
+ near_func ()
+ normal_func ());
}
/* { dg-final { scan-assembler-not "\tjal\tlong_call_func\n" } } */
/* { dg-final { scan-assembler-not "\tjal\tfar_func\n" } } */
/* { dg-final { scan-assembler "\tjal\tnear_func\n" } } */
/* { dg-final { scan-assembler "\tjal\tnormal_func\n" } } */