Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.
[binutils-gdb.git] / ld / testsuite / ld-ifunc / pr19784c.c
blob117dfec12028448cd6189569d6d9b6eaf57cbb3b
1 #include <stdio.h>
3 extern void abort (void);
4 extern int foo (int) __attribute__ ((visibility("hidden")));
6 int bar()
8 if (foo (5) != 5)
9 abort ();
10 printf("PASS\n");