PR savannah/4358:

* config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid
	overflow complain.
This commit is contained in:
Stephane Carrez 2003-09-06 20:43:05 +00:00
parent cc1b3dc7b2
commit 12a995866d
2 changed files with 7 additions and 1 deletions

View 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> 2003-09-05 Richard Sandiford <rsandifo@redhat.com>
* config/tc-frv.c (md_pcrel_from_section): Heed TC_FORCE_RELOCATION. * config/tc-frv.c (md_pcrel_from_section): Heed TC_FORCE_RELOCATION.

View File

@ -2734,7 +2734,7 @@ s_m68hc11_relax (ignore)
return; 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); BFD_RELOC_M68HC11_RL_GROUP);
demand_empty_rest_of_line (); demand_empty_rest_of_line ();