Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git] / ld / testsuite / ld-ifunc / pr19784b.c
blob8ea7ce2c86956c17879138b67d43918fff3d51fe
1 int foo (int x) __attribute__ ((ifunc ("resolve_foo")));
3 static int foo_impl(int x)
5 return x;
8 void *resolve_foo (void)
10 return (void *) foo_impl;