From 080eb7fec26633b01c91dde581974a2e9dd4eb63 Mon Sep 17 00:00:00 2001 From: Paul Brook Date: Tue, 21 Mar 2006 22:52:06 +0000 Subject: [PATCH] 2006-03-21 Paul Brook * config/tc-arm.c (md_apply_fix): Fix typo in offset mask. --- gas/ChangeLog | 4 ++++ gas/config/tc-arm.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index a70bb80b3f9..10a88e5398d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2006-03-21 Paul Brook + + * config/tc-arm.c (md_apply_fix): Fix typo in offset mask. + 2006-03-21 Sterling Augustine * config/tc-xtensa.c (enforce_three_byte_loop_align): New flag. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 876eb5d51d0..7b4887da4e0 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -11925,7 +11925,7 @@ md_apply_fix (fixS * fixP, if (fixP->fx_done || !seg->use_rela_p) { newval = md_chars_to_number (buf, THUMB_SIZE); - newval |= ((value & 0x2e) << 2) | ((value & 0x40) << 3); + newval |= ((value & 0x3e) << 2) | ((value & 0x40) << 3); md_number_to_chars (buf, newval, THUMB_SIZE); } break; -- 2.30.2