From cd18a823d1ad0787cb0745bf71c7ba447db10c58 Mon Sep 17 00:00:00 2001 From: Claudiu Zissulescu Date: Fri, 30 Aug 2019 11:31:19 +0300 Subject: [PATCH] [ARC] [COMMITTED] Fix FASTMATH field. Move FASTMATH to the right enum. 2019-08-30 Claudiu Zissulescu * opcode/arc.h (FASTMATH): Move it from insn_class_t to insn_subclass_t enum. --- include/ChangeLog | 5 +++++ include/opcode/arc.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/include/ChangeLog b/include/ChangeLog index e779c17702..3055551062 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2019-08-30 Claudiu Zissulescu + + * opcode/arc.h (FASTMATH): Move it from insn_class_t to + insn_subclass_t enum. + 2019-08-22 Alan Modra * elf/arm.h (ARM_GET_SYM_CMSE_SPCL, ARM_SET_SYM_CMSE_SPCL): Delete. diff --git a/include/opcode/arc.h b/include/opcode/arc.h index 14654b5d6c..d6a2b885a1 100644 --- a/include/opcode/arc.h +++ b/include/opcode/arc.h @@ -59,7 +59,6 @@ typedef enum EI, ENTER, FLOAT, - FASTMATH, INVALID, JLI, JUMP, @@ -99,6 +98,7 @@ typedef enum DP = (1U << 6), DPA = (1U << 7), DPX = (1U << 8), + FASTMATH = (1U << 23), LL64 = (1U << 9), MPY1E = (1U << 10), MPY6E = (1U << 11), -- 2.34.1