PR savannah/4358:
* config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid overflow complain.
This commit is contained in:
parent
cc1b3dc7b2
commit
12a995866d
2 changed files with 7 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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…
Reference in a new issue