Rebase.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / near-far-1.c
blob8806e930fc3d1aa6026ba59b314c7430ec0e4111
1 /* { dg-do compile } */
2 /* { dg-options "-mlong-calls addressing=absolute" } */
4 extern int long_call_func () __attribute__((long_call));
5 extern int far_func () __attribute__((far));
6 extern int near_func () __attribute__((near));
7 extern int normal_func ();
9 int test ()
11 return (long_call_func ()
12 + far_func ()
13 + near_func ()
14 + normal_func ());
17 /* { dg-final { scan-assembler-not "\tjal\tlong_call_func\n" } } */
18 /* { dg-final { scan-assembler-not "\tjal\tfar_func\n" } } */
19 /* { dg-final { scan-assembler "\tjal(|s)\tnear_func\n" } } */
20 /* { dg-final { scan-assembler-not "\tjal\tnormal_func\n" } } */