diff --git a/include/ChangeLog b/include/ChangeLog index 5fd774f85..de5c79cb7 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2011-05-24 Andreas Krebbel + + * opcode/s390.h: Replace S390_OPERAND_REG_EVEN with + S390_OPERAND_REG_PAIR. + 2011-05-24 Andreas Krebbel * opcode/s390.h: Add S390_OPCODE_REG_EVEN flag. diff --git a/include/opcode/s390.h b/include/opcode/s390.h index 122c60c62..ed70830c1 100644 --- a/include/opcode/s390.h +++ b/include/opcode/s390.h @@ -147,7 +147,7 @@ extern const struct s390_operand s390_operands[]; the instruction may be optional. */ #define S390_OPERAND_OPTIONAL 0x400 -/* The operand needs to be an even register number. */ -#define S390_OPERAND_REG_EVEN 0x800 +/* The operand needs to be a valid GP or FP register pair. */ +#define S390_OPERAND_REG_PAIR 0x800 #endif /* S390_H */