From 5b616beff49ce5fe10c5efc2784b6b234bb8cb4f Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Tue, 27 Feb 2018 16:40:45 +0000 Subject: [ARM] Remove ARM_FEATURE_COPY macro Among the macros to manipulate an arm_feature_set structure is the ARM_FEATURE_COPY which copy the value of a feature set into another. This can be achieved with a simple assignement which most of the existing code does. This patch removes the last 2 uses of that macro and remove the macro altogether. 2018-02-27 Thomas Preud'homme include/ * opcode/arm.h (ARM_FEATURE_COPY): Remove macro definition. 2018-02-27 Thomas Preud'homme opcodes/ * arm-dis.c (print_insn_coprocessor): Replace uses of ARM_FEATURE_COPY macro by assignements. --- include/opcode/arm.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'include/opcode') diff --git a/include/opcode/arm.h b/include/opcode/arm.h index 9c5e79b..83b3f22 100644 --- a/include/opcode/arm.h +++ b/include/opcode/arm.h @@ -389,15 +389,6 @@ typedef struct } \ while (0) -#define ARM_FEATURE_COPY(F1, F2) \ - do \ - { \ - (F1).core[0] = (F2).core[0]; \ - (F1).core[1] = (F2).core[1]; \ - (F1).coproc = (F2).coproc; \ - } \ - while (0) - #define ARM_FEATURE_EQUAL(T1,T2) \ ( (T1).core[0] == (T2).core[0] \ && (T1).core[1] == (T2).core[1] \ -- cgit v1.1