aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2000-12-13 06:23:56 +0000
committerAlan Modra <amodra@gmail.com>2000-12-13 06:23:56 +0000
commit0485cba3d316c1a419ac147eccbc7f9bec8f5768 (patch)
tree8c66a574f42af88bac31d32496e3a231ae740263 /gas
parent514829c3af7d26ac20b0f3993f449624d965bb18 (diff)
downloadgdb-0485cba3d316c1a419ac147eccbc7f9bec8f5768.zip
gdb-0485cba3d316c1a419ac147eccbc7f9bec8f5768.tar.gz
gdb-0485cba3d316c1a419ac147eccbc7f9bec8f5768.tar.bz2
Rodney Brown's CHECK_FIELD typo fixes.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-hppa.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 2ba9c0e..abbb0a1 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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.
diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c
index 2f889b2..159aa67 100644
--- a/gas/config/tc-hppa.c
+++ b/gas/config/tc-hppa.c
@@ -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);