aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>1997-09-18 23:15:05 +0000
committerNick Clifton <nickc@redhat.com>1997-09-18 23:15:05 +0000
commit2b36e4c29465676a7f83167ed9dcbf81fe2cf275 (patch)
tree690fdf5cf4d9c013c0812c537227d523aae6e65e /gas
parent2d292cc8f7891faf9603b62c3d9f02e47f922cda (diff)
downloadgdb-2b36e4c29465676a7f83167ed9dcbf81fe2cf275.zip
gdb-2b36e4c29465676a7f83167ed9dcbf81fe2cf275.tar.gz
gdb-2b36e4c29465676a7f83167ed9dcbf81fe2cf275.tar.bz2
Oops - fixed typos in previous delta.
Diffstat (limited to 'gas')
-rw-r--r--gas/config/tc-v850.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c
index df14fe9..2af88ad 100644
--- a/gas/config/tc-v850.c
+++ b/gas/config/tc-v850.c
@@ -1046,7 +1046,7 @@ handle_ctoff (const struct v850_operand * operand)
return BFD_RELOC_V850_CALLT_16_16_OFFSET;
if ( operand->bits != 6
- || operand->shift == 0)
+ || operand->shift != 0)
{
as_bad ("ctoff() relocation used on an instruction which does not support it");
return BFD_RELOC_64; /* Used to indicate an error condition. */
@@ -1066,7 +1066,7 @@ handle_sdaoff (const struct v850_operand * operand)
/* end-sanitize-v850e */
if ( operand->bits != 16
- || operand->shift == 16)
+ || operand->shift != 16)
{
as_bad ("sdaoff() relocation used on an instruction which does not support it");
return BFD_RELOC_64; /* Used to indicate an error condition. */