1 /* { dg-do compile } */
2 /* { dg-options "-mno-long-calls addressing=absolute" } */
3 
4 NOMIPS16 extern int long_call_func () __attribute__((long_call));
5 NOMIPS16 extern int far_func () __attribute__((far));
6 NOMIPS16 extern int near_func () __attribute__((near));
7 NOMIPS16 extern int normal_func ();
8 
test1()9 NOMIPS16 int test1 () { return long_call_func (); }
test2()10 NOMIPS16 int test2 () { return far_func (); }
test3()11 NOMIPS16 int test3 () { return near_func (); }
test4()12 NOMIPS16 int test4 () { return normal_func (); }
13 
14 /* { dg-final { scan-assembler-not "\tj\tlong_call_func\n" } } */
15 /* { dg-final { scan-assembler-not "\tj\tfar_func\n" } } */
16 /* { dg-final { scan-assembler     "\tj(|al)\tnear_func\n" } } */
17 /* { dg-final { scan-assembler     "\tj(|al)\tnormal_func\n" } } */
18