OSDN Git Service

gcc/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / mips / near-far-3.c
1 /* { dg-do compile } */
2 /* { dg-mips-options "-mlong-calls -O2" } */
3 /* { dg-require-effective-target nonpic } */
4
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 ();
9
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 (); }
14
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" } } */