1 /* { dg-do compile } */
2 /* { dg-mips-options "-mlong-calls -O2" } */
3 /* { dg-require-effective-target nonpic } */
5 NOMIPS16
extern int long_call_func () __attribute__((long_call
));
6 NOMIPS16
extern int far_func () __attribute__((far
));
7 NOMIPS16
extern int near_func () __attribute__((near
));
8 NOMIPS16
extern int normal_func ();
10 NOMIPS16
int test1 () { return long_call_func (); }
11 NOMIPS16
int test2 () { return far_func (); }
12 NOMIPS16
int test3 () { return near_func (); }
13 NOMIPS16
int test4 () { return normal_func (); }
15 /* { dg-final { scan-assembler-not "\tj\tlong_call_func\n" } } */
16 /* { dg-final { scan-assembler-not "\tj\tfar_func\n" } } */
17 /* { dg-final { scan-assembler "\tj\tnear_func\n" } } */
18 /* { dg-final { scan-assembler-not "\tj\tnormal_func\n" } } */