diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/coff/ChangeLog | 6 | ||||
-rw-r--r-- | include/coff/ti.h | 4 | ||||
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/ia64.h | 2 |
4 files changed, 13 insertions, 3 deletions
diff --git a/include/coff/ChangeLog b/include/coff/ChangeLog index 4aa9dc1..5b9e45c 100644 --- a/include/coff/ChangeLog +++ b/include/coff/ChangeLog @@ -1,3 +1,9 @@ +2009-09-05 Martin Thuresson <martin@mtme.org> + + * ti.h (GET_LNSZ_SIZE, PUT_LNSZ_SIZE): Updated name of class + variable to in_class to match changes in function that use this + macro. + 2009-08-10 Jan Kratochvil <jan.kratochvil@redhat.com> Fix references past allocated memory for i386-*-go32. diff --git a/include/coff/ti.h b/include/coff/ti.h index b7cc584..50fa01b 100644 --- a/include/coff/ti.h +++ b/include/coff/ti.h @@ -476,10 +476,10 @@ union external_auxent { /* lnsz size is in bits in COFF file, in bytes in BFD */ #define GET_LNSZ_SIZE(abfd, ext) \ - (H_GET_16 (abfd, ext->x_sym.x_misc.x_lnsz.x_size) / (class != C_FIELD ? 8 : 1)) + (H_GET_16 (abfd, ext->x_sym.x_misc.x_lnsz.x_size) / (in_class != C_FIELD ? 8 : 1)) #define PUT_LNSZ_SIZE(abfd, in, ext) \ - H_PUT_16 (abfd, ((class != C_FIELD) ? (in) * 8 : (in)), \ + H_PUT_16 (abfd, ((in_class != C_FIELD) ? (in) * 8 : (in)), \ ext->x_sym.x_misc.x_lnsz.x_size) /* TI COFF stores offsets for MOS and MOU in bits; BFD expects bytes diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 1ba7727..476fdcf 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2009-09-05 Martin Thuresson <martin@mtme.org> + + * ia64.h (struct ia64_operand): Renamed member class to op_class. + 2009-08-29 Martin Thuresson <martin@mtme.org> * tic30.h (template): Rename type template to diff --git a/include/opcode/ia64.h b/include/opcode/ia64.h index 280862d..67b229c 100644 --- a/include/opcode/ia64.h +++ b/include/opcode/ia64.h @@ -327,7 +327,7 @@ enum ia64_operand_class struct ia64_operand { - enum ia64_operand_class class; + enum ia64_operand_class op_class; /* Set VALUE as the operand bits for the operand of type SELF in the instruction pointed to by CODE. If an error occurs, *CODE is not |