PR savannah/4358:
authorStephane Carrez <stcarrez@nerim.fr>
Sat, 6 Sep 2003 20:43:05 +0000 (20:43 +0000)
committerStephane Carrez <stcarrez@nerim.fr>
Sat, 6 Sep 2003 20:43:05 +0000 (20:43 +0000)
* config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid
overflow complain.

gas/ChangeLog
gas/config/tc-m68hc11.c

index e576c98..2382d48 100644 (file)
@@ -1,3 +1,9 @@
+2003-09-06  Stephane Carrez  <stcarrez@nerim.fr>
+
+       PR savannah/4358:
+       * config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid
+       overflow complain.
+
 2003-09-05  Richard Sandiford  <rsandifo@redhat.com>
 
        * config/tc-frv.c (md_pcrel_from_section): Heed TC_FORCE_RELOCATION.
index 3740419..db6d5c1 100644 (file)
@@ -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 ();