2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / near-far-1.c
blobac0cc1ef79b1666ca8c49346d4105faf730f7b1a
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\tnear_func\n" } } */
20 /* { dg-final { scan-assembler-not "\tjal\tnormal_func\n" } } */