Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/coff/ChangeLog6
-rw-r--r--include/coff/ti.h4
-rw-r--r--include/opcode/ChangeLog4
-rw-r--r--include/opcode/ia64.h2
4 files changed, 13 insertions, 3 deletions
diff --git a/include/coff/ChangeLog b/include/coff/ChangeLog
index 4aa9dc107..5b9e45c8f 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 b7cc58433..50fa01bc2 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 1ba7727a4..476fdcf65 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 280862dfb..67b229cbe 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