diff options
Diffstat (limited to 'gas/config/tc-dlx.c')
-rw-r--r-- | gas/config/tc-dlx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-dlx.c b/gas/config/tc-dlx.c index 8d830fe..abb283d 100644 --- a/gas/config/tc-dlx.c +++ b/gas/config/tc-dlx.c @@ -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)) |