diff options
author | Alan Modra <amodra@gmail.com> | 2017-02-16 22:19:10 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-02-16 23:10:09 +1030 |
commit | 37d7d56caea508e836bc0d4f0fef0cb520f3ba22 (patch) | |
tree | b6252a765d4bdde68bad6a64bea7f74a202f73d5 /ld/testsuite/ld-elf/check-ptr-eq.c | |
parent | a8c75b765e57aaebb99d4e32e0f228835cff2737 (diff) | |
download | gdb-37d7d56caea508e836bc0d4f0fef0cb520f3ba22.zip gdb-37d7d56caea508e836bc0d4f0fef0cb520f3ba22.tar.gz gdb-37d7d56caea508e836bc0d4f0fef0cb520f3ba22.tar.bz2 |
ld testsuite function pointer comparisons vs. hppa
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.
Diffstat (limited to 'ld/testsuite/ld-elf/check-ptr-eq.c')
-rw-r--r-- | ld/testsuite/ld-elf/check-ptr-eq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/testsuite/ld-elf/check-ptr-eq.c b/ld/testsuite/ld-elf/check-ptr-eq.c index 874431f..c1d5ef6 100644 --- a/ld/testsuite/ld-elf/check-ptr-eq.c +++ b/ld/testsuite/ld-elf/check-ptr-eq.c @@ -2,11 +2,11 @@ extern void abort (void); /* Since GCC 5 folds symbol address comparison, assuming each symbol has different address, &foo == &bar is always false for GCC 5. Use - check_ptr_eq to check if 2 addresses are the same. */ + check_ptr_eq to check if two functions are the same. */ void -check_ptr_eq (void *p1, void *p2) +check_ptr_eq (void (*f1) (void), void (*f2) (void)) { - if (p1 != p2) + if (f1 != f2) abort (); } |