aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-mn10300.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2007-02-22 22:34:16 +0000
committerAlan Modra <amodra@gmail.com>2007-02-22 22:34:16 +0000
commitacb02403a2f9aac89fb70672b76731786dd08bdb (patch)
tree461d0a86adac8873b18b1bb764e407f80c650079 /gas/config/tc-mn10300.c
parentb2e818b70d26c7336ef4798b7beb97916ef044ac (diff)
downloadgdb-acb02403a2f9aac89fb70672b76731786dd08bdb.zip
gdb-acb02403a2f9aac89fb70672b76731786dd08bdb.tar.gz
gdb-acb02403a2f9aac89fb70672b76731786dd08bdb.tar.bz2
* config/tc-mn10300.c (md_convert_frag): Correct fixup size.
(md_assemble): Likewise.
Diffstat (limited to 'gas/config/tc-mn10300.c')
-rw-r--r--gas/config/tc-mn10300.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/gas/config/tc-mn10300.c b/gas/config/tc-mn10300.c
index fb7dc58..306e90c 100644
--- a/gas/config/tc-mn10300.c
+++ b/gas/config/tc-mn10300.c
@@ -1019,7 +1019,7 @@ md_convert_frag (abfd, sec, fragP)
int offset = fragP->fr_fix;
fragP->fr_literal[offset] = 0xcc;
- fix_new (fragP, fragP->fr_fix + 1, 4, fragP->fr_symbol,
+ fix_new (fragP, fragP->fr_fix + 1, 2, fragP->fr_symbol,
fragP->fr_offset + 1, 1, BFD_RELOC_16_PCREL);
fragP->fr_var = 0;
fragP->fr_fix += 3;
@@ -2280,17 +2280,8 @@ keep_going:
abort ();
}
- /* Convert the size of the reloc into what fix_new_exp wants. */
- reloc_size = reloc_size / 8;
- if (reloc_size == 8)
- reloc_size = 0;
- else if (reloc_size == 16)
- reloc_size = 1;
- else if (reloc_size == 32)
- reloc_size = 2;
-
fixP = fix_new_exp (frag_now, f - frag_now->fr_literal + offset,
- reloc_size, &fixups[i].exp, pcrel,
+ reloc_size / 8, &fixups[i].exp, pcrel,
((bfd_reloc_code_real_type) reloc));
if (pcrel)