diff options
Diffstat (limited to 'gas/config/tc-spu.c')
-rw-r--r-- | gas/config/tc-spu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-spu.c b/gas/config/tc-spu.c index 335fffc..1c8f7c5 100644 --- a/gas/config/tc-spu.c +++ b/gas/config/tc-spu.c @@ -273,7 +273,7 @@ md_assemble (char *op) /* try to find the instruction in the hash table */ - if ((format = (struct spu_opcode *) str_hash_find (op_hash, op)) == NULL) + if ((format = str_hash_find (op_hash, op)) == NULL) { as_bad (_("Invalid mnemonic '%s'"), op); return; |