mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
37d7d56cae
ld/testsuite/ld-elf/check-ptr-eq.c fails for hppa, since function pointers may point at plabels. It isn't valid to cast two function pointers to void* and then compare the void pointers. * testsuite/ld-elf/check-ptr-eq.c (check_ptr_eq): Change params from void pointers to function pointers. * testsuite/ld-elf/pr18718.c: Update to suit. * testsuite/ld-elf/pr18720a.c: Update to suit.
36 lines
632 B
C
36 lines
632 B
C
#include <stdio.h>
|
|
#include <bfd_stdint.h>
|
|
|
|
extern void foo (void);
|
|
extern void check_ptr_eq (void (*) (void), void (*) (void));
|
|
|
|
void
|
|
new_foo (void)
|
|
{
|
|
}
|
|
|
|
__asm__(".symver new_foo, foo@@VERS_2.0");
|
|
#if defined __powerpc64__ && defined _CALL_AIXDESC && !defined _CALL_LINUX
|
|
__asm__(".symver .new_foo, .foo@@VERS_2.0");
|
|
#endif
|
|
|
|
#if defined(__GNUC__) && (__GNUC__ * 1000 + __GNUC_MINOR__) >= 4005
|
|
__attribute__ ((noinline, noclone))
|
|
#else
|
|
__attribute__ ((noinline))
|
|
#endif
|
|
int
|
|
bar (void)
|
|
{
|
|
return (intptr_t) &foo == 0x12345678 ? 1 : 0;
|
|
}
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
bar ();
|
|
check_ptr_eq (&foo, &new_foo);
|
|
printf("PASS\n");
|
|
return 0;
|
|
}
|