2004-12-16 Andrew Stubbs <andrew.stubbs@st.com>

* config/tc-sh64.c (shmedia_md_apply_fix3): Add missing
	BFD_RELOC_SH_IMMS10BY8 relocation.
This commit is contained in:
Joern Rennecke 2004-12-16 18:17:04 +00:00
parent 1e50d24d55
commit 02292fc117
1 changed files with 5 additions and 0 deletions

View File

@ -739,6 +739,11 @@ shmedia_md_apply_fix3 (fixS *fixP, valueT *valp)
insn | ((val & (0x3ff << 2)) << (10 - 2)), 4);
break;
case BFD_RELOC_SH_IMMS10BY8:
md_number_to_chars (buf,
insn | ((val & (0x3ff << 3)) << (10 - 3)), 4);
break;
case BFD_RELOC_SH_SHMEDIA_CODE:
/* We just ignore and remove this one for the moment. FIXME:
Use it when implementing relaxing. */