mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
Oops - fixed typos in previous delta.
This commit is contained in:
@ -1046,7 +1046,7 @@ handle_ctoff (const struct v850_operand * operand)
|
|||||||
return BFD_RELOC_V850_CALLT_16_16_OFFSET;
|
return BFD_RELOC_V850_CALLT_16_16_OFFSET;
|
||||||
|
|
||||||
if ( operand->bits != 6
|
if ( operand->bits != 6
|
||||||
|| operand->shift == 0)
|
|| operand->shift != 0)
|
||||||
{
|
{
|
||||||
as_bad ("ctoff() relocation used on an instruction which does not support it");
|
as_bad ("ctoff() relocation used on an instruction which does not support it");
|
||||||
return BFD_RELOC_64; /* Used to indicate an error condition. */
|
return BFD_RELOC_64; /* Used to indicate an error condition. */
|
||||||
@ -1066,7 +1066,7 @@ handle_sdaoff (const struct v850_operand * operand)
|
|||||||
/* end-sanitize-v850e */
|
/* end-sanitize-v850e */
|
||||||
|
|
||||||
if ( operand->bits != 16
|
if ( operand->bits != 16
|
||||||
|| operand->shift == 16)
|
|| operand->shift != 16)
|
||||||
{
|
{
|
||||||
as_bad ("sdaoff() relocation used on an instruction which does not support it");
|
as_bad ("sdaoff() relocation used on an instruction which does not support it");
|
||||||
return BFD_RELOC_64; /* Used to indicate an error condition. */
|
return BFD_RELOC_64; /* Used to indicate an error condition. */
|
||||||
|
Reference in New Issue
Block a user