diff options
Diffstat (limited to 'gas/config/tc-dlx.c')
-rw-r--r-- | gas/config/tc-dlx.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-dlx.c b/gas/config/tc-dlx.c index 8d830fe..69c8f49 100644 --- a/gas/config/tc-dlx.c +++ b/gas/config/tc-dlx.c @@ -187,7 +187,7 @@ is_ldst_registers (char *name) /* The first character of the register name got to be either %, $, r of R. */ if ((ptr[0] == '%' || ptr[0] == '$' || ptr[0] == 'r' || ptr[0] == 'R') - && ISDIGIT ((unsigned char) ptr[1])) + && ISDIGIT (ptr[1])) return 1; /* Now check the software register representation. */ @@ -539,7 +539,7 @@ static char * fix_ld_st_operand (unsigned long opcode, char* str) { /* Check the opcode. */ - switch ((int) opcode) + switch (opcode) { case LBOP: case LBUOP: @@ -616,7 +616,7 @@ parse_operand (char *s, expressionS *operandp) /* Check for the % and $ register representation */ if ((s[0] == '%' || s[0] == '$' || s[0] == 'r' || s[0] == 'R') - && ISDIGIT ((unsigned char) s[1])) + && ISDIGIT (s[1])) { /* We have a numeric register expression. No biggy. */ s += 1; @@ -683,7 +683,7 @@ machine_ip (char *str) } /* Hash the opcode, insn will have the string from opcode table. */ - if ((insn = (struct machine_opcode *) str_hash_find (op_hash, str)) == NULL) + if ((insn = str_hash_find (op_hash, str)) == NULL) { /* Handle the ret and return macro here. */ if ((strcmp (str, "ret") == 0) || (strcmp (str, "return") == 0)) @@ -1124,7 +1124,7 @@ md_operand (expressionS* expressionP) { /* Check for the #number representation */ if (input_line_pointer[0] == '#' && - ISDIGIT ((unsigned char) input_line_pointer[1])) + ISDIGIT (input_line_pointer[1])) { /* We have a numeric number expression. No biggy. */ input_line_pointer += 1; /* Skip # */ |