diff options
author | Thiemo Seufer <ths@networkno.de> | 2002-05-14 23:19:39 +0000 |
---|---|---|
committer | Thiemo Seufer <ths@networkno.de> | 2002-05-14 23:19:39 +0000 |
commit | 4db1a35d12b873492c52c11f6cfabf4dd7a98ff4 (patch) | |
tree | 06c513b01a49300a5da7b4099bbec6c875b0140c /gas/config | |
parent | 93021b7d084137c5911875f5e89972266a4f7711 (diff) | |
download | gdb-4db1a35d12b873492c52c11f6cfabf4dd7a98ff4.zip gdb-4db1a35d12b873492c52c11f6cfabf4dd7a98ff4.tar.gz gdb-4db1a35d12b873492c52c11f6cfabf4dd7a98ff4.tar.bz2 |
* config/tc-mips.c (append_insn): Fix too small range of variable.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index d92f321..150b47e 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -2037,7 +2037,7 @@ append_insn (place, ip, address_expr, reloc_type, unmatched_hi) { if (address_expr->X_op == O_constant) { - unsigned long tmp; + valueT tmp; switch (*reloc_type) { |