diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 6 | ||||
-rw-r--r-- | include/opcode/arc.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 4b45253..1e64ac3 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,9 @@ +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. + 2016-05-23 Trevor Saunders <tbsaunde+binutils@tbsaunde.org> * opcode/tic54x.h (struct symbol_): typedef to tic54x_symbol instead of diff --git a/include/opcode/arc.h b/include/opcode/arc.h index d10e311..2e5de9c 100644 --- a/include/opcode/arc.h +++ b/include/opcode/arc.h @@ -116,7 +116,7 @@ struct arc_opcode unsigned cpu; /* The instruction class. This is used by gdb. */ - insn_class_t class; + insn_class_t insn_class; /* The instruction subclass. */ insn_subclass_t subclass; @@ -335,7 +335,7 @@ extern const unsigned arc_num_flag_operands; struct arc_flag_class { /* Flag class. */ - flag_class_t class; + flag_class_t flag_class; /* List of valid flags (codes). */ unsigned flags[256]; |