diff options
author | Claudiu Zissulescu <claziss@synopsys.com> | 2016-05-23 17:25:46 +0200 |
---|---|---|
committer | Claudiu Zissulescu <claziss@synopsys.com> | 2016-05-23 17:25:46 +0200 |
commit | c810e0b87a2084656af944fe269d8c2680ba5469 (patch) | |
tree | d10a20ba7aac4eb2f7ddd8df5dca544496735195 /opcodes/arc-ext.h | |
parent | ffd19d610b3807bd5e2622440e225adb12a6766b (diff) | |
download | gdb-c810e0b87a2084656af944fe269d8c2680ba5469.zip gdb-c810e0b87a2084656af944fe269d8c2680ba5469.tar.gz gdb-c810e0b87a2084656af944fe269d8c2680ba5469.tar.bz2 |
[ARC] Rename "class" named attributes.
gas/
2016-05-23 Cupertino Miranda <cmiranda@synopsys.com>
* config/tc-arc.c (attributes_t): Renamed attribute class to
attr_class.
(find_opcode_match, assemble_insn, tokenize_extinsn): Changed.
opcode/
2016-05-23 Cupertino Miranda <cmiranda@synopsys.com>
* arc-dis.c (find_format, find_format, get_auxreg)
(print_insn_arc): Changed.
* arc-ext.h (INSERT_XOP): Likewise.
include/
2016-05-23 Cupertino Miranda <cmiranda@synopsys.com>
* opcode/arc.h (struct arc_opcode): Renamed attribute class to
insn_class.
(struct arc_flag_class): Renamed attribute class to flag_class.
Diffstat (limited to 'opcodes/arc-ext.h')
-rw-r--r-- | opcodes/arc-ext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/arc-ext.h b/opcodes/arc-ext.h index fcce7e2..e92a350 100644 --- a/opcodes/arc-ext.h +++ b/opcodes/arc-ext.h @@ -80,7 +80,7 @@ enum ExtReadWrite (OP)->opcode = CODE; \ (OP)->mask = MASK; \ (OP)->cpu = CPU; \ - (OP)->class = ARITH; \ + (OP)->insn_class = ARITH; \ (OP)->subclass = NONE; \ memcpy ((OP)->operands, (ARG), MAX_INSN_ARGS); \ memcpy ((OP)->flags, (FLG), MAX_INSN_FLGS); \ |