diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2011-05-24 16:13:31 +0000 |
---|---|---|
committer | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2011-05-24 16:13:31 +0000 |
commit | c8fa16ed5ab3fe171ad9d5f5e4bad585ce639c27 (patch) | |
tree | 8c2cfbc316f82a3ec295374d87b63e997fe8d9dc /include | |
parent | cdac0397bf4a5390c5fd087edb0bb07ce4b423ef (diff) | |
download | gdb-c8fa16ed5ab3fe171ad9d5f5e4bad585ce639c27.zip gdb-c8fa16ed5ab3fe171ad9d5f5e4bad585ce639c27.tar.gz gdb-c8fa16ed5ab3fe171ad9d5f5e4bad585ce639c27.tar.bz2 |
2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/tc-s390.c (md_gather_operands): Fix check for floating
register pair operands.
2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* opcode/s390.h: Replace S390_OPERAND_REG_EVEN with
S390_OPERAND_REG_PAIR.
2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* s390-opc.c: Replace S390_OPERAND_REG_EVEN with
S390_OPERAND_REG_PAIR. Fix INSTR_RRF_0UFEF instruction type.
* s390-opc.txt: Fix cxr instruction type.
2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* gas/s390/esa-g5.d: Fix fp register pair operands.
* gas/s390/esa-g5.s: Likewise.
* gas/s390/zarch-z196.d: Likewise.
* gas/s390/zarch-z196.s: Likewise.
* gas/s390/zarch-z9-109.d: Likewise.
* gas/s390/zarch-z9-109.s: Likewise.
* gas/s390/zarch-z9-ec.d: Likewise.
* gas/s390/zarch-z9-ec.s: Likewise.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/opcode/s390.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 5fd774f..de5c79c 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,5 +1,10 @@ 2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + * opcode/s390.h: Replace S390_OPERAND_REG_EVEN with + S390_OPERAND_REG_PAIR. + +2011-05-24 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + * opcode/s390.h: Add S390_OPCODE_REG_EVEN flag. 2011-05-17 Alan Modra <amodra@gmail.com> diff --git a/include/opcode/s390.h b/include/opcode/s390.h index 122c60c..ed70830 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 */ |