* config/tc-mips.c (append_insn): Fix too small range of variable.
This commit is contained in:
parent
93021b7d08
commit
4db1a35d12
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-05-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||
|
||||
* config/tc-mips.c (append_insn): Fix too small range of variable.
|
||||
|
||||
2002-05-14 Nick Clifton <nickc@cambridge.redhat.com>
|
||||
|
||||
* config/tc-arm.c (arm_cleanup): Remove redundant call to
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue