Handle Octeon 3 not supporting MIPS paired-single instructions.
[official-gcc.git] / gcc / testsuite / gcc.target / mips / near-far-2.c
blob2c140e2ceb2db6c91856e0c809bf0e04e004b7a4
1 /* { dg-do compile } */
2 /* { dg-options "-mno-long-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(|s)\tlong_call_func\n" } } */
18 /* { dg-final { scan-assembler-not "\tjal(|s)\tfar_func\n" } } */
19 /* { dg-final { scan-assembler "\t(jal(|s)|balc)\tnear_func\n" } } */
20 /* { dg-final { scan-assembler "\t(jal(|s)|balc)\tnormal_func\n" } } */