diff options
author | Jeff Law <law@redhat.com> | 1999-08-05 03:50:28 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-08-05 03:50:28 +0000 |
commit | 1560fbe45efb3d93a399df4448185cff55153641 (patch) | |
tree | 99ac002f3e978e8a5c05691c9ef7912d41d0c54e | |
parent | 3686090072505f80eed7fe7a0c29fed33d619a86 (diff) | |
download | gdb-1560fbe45efb3d93a399df4448185cff55153641.zip gdb-1560fbe45efb3d93a399df4448185cff55153641.tar.gz gdb-1560fbe45efb3d93a399df4448185cff55153641.tar.bz2 |
* libhppa.h (R_HPPA_LTPSEL, R_HPPA_RTPSEL): New field selectors
(e_ltpsel, e_rtpsel): Similarly.
-rw-r--r-- | bfd/ChangeLog | 3 | ||||
-rw-r--r-- | bfd/libhppa.h | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9be0c48..1fc4739 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,8 @@ Wed Aug 4 18:08:07 1999 Jeffrey A Law (law@cygnus.com) + * libhppa.h (R_HPPA_LTPSEL, R_HPPA_RTPSEL): New field selectors + (e_ltpsel, e_rtpsel): Similarly. + * elf-hppa.h (_bfd_elf_hppa_gen_reloc_type): Handle 21bit e_ltpsel and 14bit ertpsel. Handle 64bit psel. diff --git a/bfd/libhppa.h b/bfd/libhppa.h index 6027094..4ce82ea 100644 --- a/bfd/libhppa.h +++ b/bfd/libhppa.h @@ -100,7 +100,9 @@ enum hppa_reloc_field_selector_type R_HPPA_RPSEL = 0xe, R_HPPA_TSEL = 0xf, R_HPPA_LTSEL = 0x10, - R_HPPA_RTSEL = 0x11 + R_HPPA_RTSEL = 0x11, + R_HPPA_LTPSEL = 0x12, + R_HPPA_RTPSEL = 0x13 }; /* /usr/include/reloc.h defines these to constants. We want to use @@ -153,7 +155,9 @@ enum hppa_reloc_field_selector_type_alt e_rpsel = R_HPPA_RPSEL, e_tsel = R_HPPA_TSEL, e_ltsel = R_HPPA_LTSEL, - e_rtsel = R_HPPA_RTSEL + e_rtsel = R_HPPA_RTSEL, + e_ltpsel = R_HPPA_LTPSEL, + e_rtpsel = R_HPPA_RTPSEL }; enum hppa_reloc_expr_type |