From: Nick Clifton Date: Sun, 19 Mar 2000 22:09:23 +0000 (+0000) Subject: fix bug detecting pc-rel overflow X-Git-Tag: gdb_5_0-2000-04-10-branchpoint~235 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=114241553a379c49415048cb5a16c4092ac0f5c1;p=external%2Fbinutils.git fix bug detecting pc-rel overflow --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 02bcb95..6ba9cfd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-03-19 Nick Clifton + + * config/tc-arm.c (md_apply_fix3): Fix bug detectng overflow of pc + relative branches. + 2000-03-17 Thomas de Lellis * config/tc-arm.c (do_t_adr): Flag "adr Rd,label" diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 58dd3cf..04d8b45 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -5608,8 +5608,7 @@ md_apply_fix3 (fixP, val, seg) value += SEXT24 (newval); if ((value & 0xff000000UL) != 0 - && (fixP->fx_done == 0 - || ((value & 0xff000000UL) != 0xff000000UL))) + && ((value & 0xff000000UL) != 0xff000000UL)) as_bad_where (fixP->fx_file, fixP->fx_line, _("out of range branch"));