From 520a04c2d4e3c8e4598c811a4b207bc284ef9c09 Mon Sep 17 00:00:00 2001 From: Stephane Carrez Date: Sat, 6 Sep 2003 20:43:05 +0000 Subject: [PATCH] PR savannah/4358: * config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid overflow complain. --- gas/ChangeLog | 6 ++++++ gas/config/tc-m68hc11.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index e576c98b42..2382d484bc 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 3740419578..db6d5c1726 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 (); -- 2.11.0