blob: ac0cc1ef79b1666ca8c49346d4105faf730f7b1a [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mlong-calls addressing=absolute" } */
extern int long_call_func () __attribute__((long_call));
extern int far_func () __attribute__((far));
extern int near_func () __attribute__((near));
extern int normal_func ();
int test ()
{
return (long_call_func ()
+ far_func ()
+ near_func ()
+ normal_func ());
}
/* { dg-final { scan-assembler-not "\tjal\tlong_call_func\n" } } */
/* { dg-final { scan-assembler-not "\tjal\tfar_func\n" } } */
/* { dg-final { scan-assembler "\tjal\tnear_func\n" } } */
/* { dg-final { scan-assembler-not "\tjal\tnormal_func\n" } } */