* config/tc-mips.c (append_insn): Fix too small range of variable.
authorThiemo Seufer <ths@networkno.de>
Tue, 14 May 2002 23:19:39 +0000 (23:19 +0000)
committerThiemo Seufer <ths@networkno.de>
Tue, 14 May 2002 23:19:39 +0000 (23:19 +0000)
gas/ChangeLog
gas/config/tc-mips.c

index 3aa0b9c..313e3f3 100644 (file)
@@ -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
index d92f321..150b47e 100644 (file)
@@ -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)
            {