Rodney Brown's CHECK_FIELD typo fixes.
authorAlan Modra <amodra@gmail.com>
Wed, 13 Dec 2000 06:23:56 +0000 (06:23 +0000)
committerAlan Modra <amodra@gmail.com>
Wed, 13 Dec 2000 06:23:56 +0000 (06:23 +0000)
gas/ChangeLog
gas/config/tc-hppa.c

index 2ba9c0e94a0fb2f1dd12dbe52847c8604c84906f..abbb0a1fcf1015b9243db3c90ff2763aced2f631 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-13  Rodney Brown  <RodneyBrown@mynd.com>
+
+       * config/tc-hppa.c (pa_ip): Correct CHECK_FIELD typo.
+       (md_apply_fix): Here too.
+
 2000-12-12  Jim Wilson  <wilson@redhat.com>
 
        * config/tc-ia64.h (ia64_init): Add prototype.
index 2f889b284d5cdbb04b494c03499d777fe3ddf4ee..159aa67be06d4f7fa9f1bd213642080ddc823c97 100644 (file)
@@ -3441,7 +3441,7 @@ pa_ip (str)
              if (strict && the_insn.exp.X_op != O_constant)
                break;
              s = expr_end;
-             CHECK_FIELD (num, 671108864, 0, strict);
+             CHECK_FIELD (num, 67108863, 0, strict);
              INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
 
            /* Handle a 3 bit SFU identifier at 25.  */
@@ -4461,7 +4461,7 @@ md_apply_fix (fixP, valp)
 
       /* Handle all the opcodes with the 'i' operand type.  */
     case 11:
-      CHECK_FIELD (new_val, 1023, -1023, 0);
+      CHECK_FIELD (new_val, 1023, -1024, 0);
       val = new_val;
 
       insn = (insn & ~ 0x7ff) | low_sign_unext (val, 11);
This page took 0.033918 seconds and 4 git commands to generate.