diff options
author | Jeff Law <law@redhat.com> | 1999-07-02 11:26:12 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-07-02 11:26:12 +0000 |
commit | 2a6d0fe7b38aa6a4cc1b58855a36f8779d735df7 (patch) | |
tree | 0791351f9b99e21a2e84baa8e96c6e92f777cde7 /bfd/libhppa.h | |
parent | 39e878bf53c5d77ebc656765d7100a9d08b048d6 (diff) | |
download | binutils-2a6d0fe7b38aa6a4cc1b58855a36f8779d735df7.zip binutils-2a6d0fe7b38aa6a4cc1b58855a36f8779d735df7.tar.gz binutils-2a6d0fe7b38aa6a4cc1b58855a36f8779d735df7.tar.bz2 |
* libhppa.h (HPPA_R_ARG_RELOC): Delete.
(HPPA_R_CONSTANT, HPPA_R_ADDEND): Likewise.
Diffstat (limited to 'bfd/libhppa.h')
-rw-r--r-- | bfd/libhppa.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/bfd/libhppa.h b/bfd/libhppa.h index 05256a2..7fc52e4 100644 --- a/bfd/libhppa.h +++ b/bfd/libhppa.h @@ -177,21 +177,6 @@ enum hppa_reloc_expr_type_alt }; -/* Relocations for function calls must be accompanied by parameter - relocation bits. These bits describe exactly where the caller has - placed the function's arguments and where it expects to find a return - value. - - Both ELF and SOM encode this information within the addend field - of the call relocation. (Note this could break very badly if one - was to make a call like bl foo + 0x12345678). - - The high order 10 bits contain parameter relocation information, - the low order 22 bits contain the constant offset. */ - -#define HPPA_R_ARG_RELOC(a) (((a) >> 22) & 0x3FF) -#define HPPA_R_CONSTANT(a) ((((int)(a)) << 10) >> 10) -#define HPPA_R_ADDEND(r,c) (((r) << 22) + ((c) & 0x3FFFFF)) #define HPPA_WIDE (0) /* PSW W-bit, need to check! FIXME */ /* These macros get bit fields using HP's numbering (MSB = 0), |