From: Stephane Carrez Date: Sat, 6 Sep 2003 20:43:05 +0000 (+0000) Subject: PR savannah/4358: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=12a995866da33cb941712228084d76b386d2a803;p=binutils-gdb.git PR savannah/4358: * config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid overflow complain. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index e576c98b426..2382d484bcb 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2003-09-06 Stephane Carrez + + PR savannah/4358: + * config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid + overflow complain. + 2003-09-05 Richard Sandiford * config/tc-frv.c (md_pcrel_from_section): Heed TC_FORCE_RELOCATION. diff --git a/gas/config/tc-m68hc11.c b/gas/config/tc-m68hc11.c index 3740419578a..db6d5c17263 100644 --- a/gas/config/tc-m68hc11.c +++ b/gas/config/tc-m68hc11.c @@ -2734,7 +2734,7 @@ s_m68hc11_relax (ignore) return; } - fix_new_exp (frag_now, frag_now_fix (), 1, &ex, 1, + fix_new_exp (frag_now, frag_now_fix (), 2, &ex, 1, BFD_RELOC_M68HC11_RL_GROUP); demand_empty_rest_of_line ();