Remove an unnecessary set of parentheses in the arm-dis.c source file.

* arm-dis.c (is_mve_unpredictable): Remove spurious paranthesis.
This commit is contained in:
Alan Hayward 2019-06-04 14:25:08 +01:00 committed by Nick Clifton
parent 1ff30553d8
commit a9d96ab97e
2 changed files with 5 additions and 1 deletions

View file

@ -6619,7 +6619,7 @@ is_mve_unpredictable (unsigned long given, enum mve_instructions matched_insn,
= arm_decode_field_multiple (given, 13, 15, 22, 22);
unsigned long Qn = arm_decode_field_multiple (given, 17, 19, 7, 7);
if ((Qd == Qn))
if (Qd == Qn)
{
*unpredictable_code = UNPRED_Q_REGS_EQ_AND_SIZE_1;
return TRUE;