diff options
Diffstat (limited to 'gas/config/tc-tic4x.c')
-rw-r--r-- | gas/config/tc-tic4x.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gas/config/tc-tic4x.c b/gas/config/tc-tic4x.c index 97a088c..167a94f 100644 --- a/gas/config/tc-tic4x.c +++ b/gas/config/tc-tic4x.c @@ -2450,8 +2450,7 @@ md_assemble (char *str) if (insn->in_use) { - if ((insn->inst = (struct tic4x_inst *) - str_hash_find (tic4x_op_hash, insn->name)) == NULL) + if ((insn->inst = str_hash_find (tic4x_op_hash, insn->name)) == NULL) { as_bad (_("Unknown opcode `%s'."), insn->name); insn->parallel = 0; |