[ARC] [COMMITTED] Fix FASTMATH field.

Move FASTMATH to the right enum.

2019-08-30  Claudiu Zissulescu <claziss@gmail.com>

        * opcode/arc.h (FASTMATH): Move it from insn_class_t to
        insn_subclass_t enum.
This commit is contained in:
Claudiu Zissulescu
2019-08-30 11:31:19 +03:00
parent 9d1c2eb1b8
commit cd18a823d1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2019-08-30 Claudiu Zissulescu <claziss@gmail.com>
* opcode/arc.h (FASTMATH): Move it from insn_class_t to
insn_subclass_t enum.
2019-08-22 Alan Modra <amodra@gmail.com> 2019-08-22 Alan Modra <amodra@gmail.com>
* elf/arm.h (ARM_GET_SYM_CMSE_SPCL, ARM_SET_SYM_CMSE_SPCL): Delete. * elf/arm.h (ARM_GET_SYM_CMSE_SPCL, ARM_SET_SYM_CMSE_SPCL): Delete.

View File

@ -59,7 +59,6 @@ typedef enum
EI, EI,
ENTER, ENTER,
FLOAT, FLOAT,
FASTMATH,
INVALID, INVALID,
JLI, JLI,
JUMP, JUMP,
@ -99,6 +98,7 @@ typedef enum
DP = (1U << 6), DP = (1U << 6),
DPA = (1U << 7), DPA = (1U << 7),
DPX = (1U << 8), DPX = (1U << 8),
FASTMATH = (1U << 23),
LL64 = (1U << 9), LL64 = (1U << 9),
MPY1E = (1U << 10), MPY1E = (1U << 10),
MPY6E = (1U << 11), MPY6E = (1U << 11),