[testsuite] require sqrt_insn effective target where needed
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / longcall-1.c
blobe7187f17a836fca88ce542f6e4fadb96042907f3
1 /* PR target/35100 */
2 /* { dg-do compile { target fpic } } */
3 /* { dg-options "-fpic" } */
5 void foo (void) __attribute__((__longcall__));
6 int baz (void) __attribute__((__longcall__));
8 int
9 bar (void)
11 foo ();
12 return baz () + 1;