aboutsummaryrefslogtreecommitdiff
path: root/bfd/libhppa.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-05-04 12:45:43 +0000
committerAlan Modra <amodra@gmail.com>2000-05-04 12:45:43 +0000
commit7c30ac37524361bc4be40df2fc32abb3af62101b (patch)
tree3fa6b3dfc3011135b31ec6d35cab76422bb8dfb2 /bfd/libhppa.h
parent6878c38321278cd3af9744a55e4582d6a55164f6 (diff)
downloadfsf-binutils-gdb-7c30ac37524361bc4be40df2fc32abb3af62101b.zip
fsf-binutils-gdb-7c30ac37524361bc4be40df2fc32abb3af62101b.tar.gz
fsf-binutils-gdb-7c30ac37524361bc4be40df2fc32abb3af62101b.tar.bz2
Fix thinko in 2000-05-02 change.
Diffstat (limited to 'bfd/libhppa.h')
-rw-r--r--bfd/libhppa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/libhppa.h b/bfd/libhppa.h
index 121398d..ddb6efa 100644
--- a/bfd/libhppa.h
+++ b/bfd/libhppa.h
@@ -156,7 +156,7 @@ enum hppa_reloc_expr_type_alt
#define HPPA_R_ARG_RELOC(a) \
(((a) >> 22) & 0x3ff)
#define HPPA_R_CONSTANT(a) \
- ((((int)(a)) << (BFD_ARCH_SIZE-22)) >> (BFD_ARCH_SIZE-22))
+ ((((bfd_signed_vma)(a)) << (BFD_ARCH_SIZE-22)) >> (BFD_ARCH_SIZE-22))
#define HPPA_R_ADDEND(r, c) \
(((r) << 22) + ((c) & 0x3fffff))
#define HPPA_WIDE (0) /* PSW W-bit, need to check! FIXME */