1/* PR target/35100 */
2/* { dg-do compile { target fpic } } */
3/* { dg-options "-fpic" } */
4
5void foo (void) __attribute__((__longcall__));
6int baz (void) __attribute__((__longcall__));
7
8int
9bar (void)
10{
11  foo ();
12  return baz () + 1;
13}
14