diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index a53a246c5..d7e7c6268 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,8 @@ +2010-10-09 Matt Rice + + * cgen.h (CGEN_ATTR, CGEN_ATTR_TYPE): Rename bool attribute to bool_. + (CGEN_ATTR_BOOLS, CGEN_ATTR_CGEN_INSN_ALIAS_VALUE): Likewise. + 2010-09-23 Matthew Gretton-Dann * arm.h (ARM_EXT_VIRT): New define. @@ -6,7 +11,7 @@ Extensions. 2010-09-23 Matthew Gretton-Dann - + * arm.h (ARM_AEXT_ADIV): New define. (ARM_ARCH_V7A_IDIV_MP_SEC): Likewise. diff --git a/include/opcode/cgen.h b/include/opcode/cgen.h index d72a0abc9..b7e82d4dd 100644 --- a/include/opcode/cgen.h +++ b/include/opcode/cgen.h @@ -129,7 +129,7 @@ typedef union typedef struct { /* Boolean attributes. */ - unsigned int bool; + unsigned int bool_; /* Non-boolean integer attributes. */ CGEN_ATTR_VALUE_TYPE nonbool[1]; } CGEN_ATTR; @@ -140,12 +140,12 @@ typedef struct in one host int). */ #define CGEN_ATTR_TYPE(n) \ -struct { unsigned int bool; \ +struct { unsigned int bool_; \ CGEN_ATTR_VALUE_TYPE nonbool[(n) ? (n) : 1]; } /* Return the boolean attributes. */ -#define CGEN_ATTR_BOOLS(a) ((a)->bool) +#define CGEN_ATTR_BOOLS(a) ((a)->bool_) /* Non-boolean attribute numbers are offset by this much. */ @@ -982,7 +982,7 @@ typedef CGEN_ATTR_TYPE (CGEN_INSN_NBOOL_ATTRS) CGEN_INSN_ATTR_TYPE; typedef enum cgen_insn_attr { CGEN_INSN_ALIAS = 0 } CGEN_INSN_ATTR; -#define CGEN_ATTR_CGEN_INSN_ALIAS_VALUE(attrs) ((attrs)->bool & (1 << CGEN_INSN_ALIAS)) +#define CGEN_ATTR_CGEN_INSN_ALIAS_VALUE(attrs) ((attrs)->bool_ & (1 << CGEN_INSN_ALIAS)) #endif /* This struct defines each entry in the instruction table. */