1 /* { dg-do compile } */
2 /* { dg-options "-mlong-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 short_call_func () __attribute__((short_call));
7 NOMIPS16 extern int near_func () __attribute__((near));
8 NOMIPS16 extern int normal_func ();
9 
test1()10 NOMIPS16 int test1 () { return long_call_func (); }
test2()11 NOMIPS16 int test2 () { return far_func (); }
test3()12 NOMIPS16 int test3 () { return near_func (); }
test4()13 NOMIPS16 int test4 () { return normal_func (); }
test5()14 NOMIPS16 int test5 () { return short_call_func (); }
15 
16 /* { dg-final { scan-assembler-not "\tj\tlong_call_func\n" } } */
17 /* { dg-final { scan-assembler-not "\tj\tfar_func\n" } } */
18 /* { dg-final { scan-assembler     "\t(j(|al|als)|b(|al)c)\tnear_func\n" } } */
19 /* { dg-final { scan-assembler-not "\tj\tnormal_func\n" } } */
20 /* { dg-final { scan-assembler     "\t(j(|al|als)|b(|al)c)\tshort_call_func\n" } } */
21