Browse Source

PR savannah/4358:

* config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid
	overflow complain.
ezannoni_pie-20030916-branch
Stephane Carrez 23 years ago
parent
commit
12a995866d
  1. 6
      gas/ChangeLog
  2. 2
      gas/config/tc-m68hc11.c

6
gas/ChangeLog

@ -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.

2
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 ();

Loading…
Cancel
Save