Remove an unnecessary set of parentheses in the arm-dis.c source file.
authorAlan Hayward <alan.hayward@arm.com>
Tue, 4 Jun 2019 13:25:08 +0000 (14:25 +0100)
committerNick Clifton <nickc@redhat.com>
Tue, 4 Jun 2019 13:25:08 +0000 (14:25 +0100)
* arm-dis.c (is_mve_unpredictable): Remove spurious paranthesis.

opcodes/ChangeLog
opcodes/arm-dis.c

index 3ee875d6c846878d5aeaedea2de55f01c8144cbe..9645cf71475199b88614931a40e1937f106c3451 100644 (file)
@@ -1,3 +1,7 @@
+2019-06-04  Alan Hayward  <alan.hayward@arm.com>
+
+       * arm-dis.c (is_mve_unpredictable): Remove spurious paranthesis.
+
 2019-06-03  Alan Modra  <amodra@gmail.com>
 
        * ppc-dis.c (prefix_opcd_indices): Correct size.
index 0503d9365d19633d0dacce367ba4acaf2beb6f6a..03aebb571a63c5c328b9371c7221cfae7364b498 100644 (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;