diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2003-04-09 03:07:48 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2003-04-09 03:07:48 +0000 |
commit | eb0a7d52bdc92918fd9c83f20f31b87c3abad137 (patch) | |
tree | 0dfbf2b3215bd015d5dd33f13fe9f2d511b123bb /gas/config | |
parent | 69931e601363c9ac1d7dc3fcd6c91e16282c3f8a (diff) | |
download | gdb-eb0a7d52bdc92918fd9c83f20f31b87c3abad137.zip gdb-eb0a7d52bdc92918fd9c83f20f31b87c3abad137.tar.gz gdb-eb0a7d52bdc92918fd9c83f20f31b87c3abad137.tar.bz2 |
* config/tc-mips.c (macro): Put back `+ 0x8000' in test for 64-bit
constant address that Alexandre took out by accident. Reject
64-bit addresses that are not sign extensions of 32 bits only if
we don't support 64-bit address constants.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index e07dde3..7fa0251 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -5849,7 +5849,7 @@ macro (ip) */ if ((offset_expr.X_op != O_constant && HAVE_64BIT_ADDRESSES) || (offset_expr.X_op == O_constant - && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number) + && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number + 0x8000) && HAVE_64BIT_ADDRESS_CONSTANTS)) { p = NULL; @@ -5898,6 +5898,7 @@ macro (ip) return; } else if (offset_expr.X_op == O_constant + && !HAVE_64BIT_ADDRESS_CONSTANTS && !IS_SEXT_32BIT_NUM (offset_expr.X_add_number)) as_bad (_("load/store address overflow (max 32 bits)")); |