diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/ChangeLog | 6 | ||||
-rw-r--r-- | include/opcode/s390.h | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 44fc32cb93a..aa5ea1c195a 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,9 @@ +2015-09-29 Dominik Vogt <vogt@linux.vnet.ibm.com> + + * s390.h (S390_INSTR_FLAG_HTM): New flag. + (S390_INSTR_FLAG_VX): New flag. + (S390_INSTR_FLAG_FACILITY_MASK): New flag mask. + 2015-09-23 Nick Clifton <nickc@redhat.com> * ppc.h (PPC_OPSHIFT_INV): Use an unsigned constant when left diff --git a/include/opcode/s390.h b/include/opcode/s390.h index b47709c29a0..63797d8c133 100644 --- a/include/opcode/s390.h +++ b/include/opcode/s390.h @@ -47,6 +47,9 @@ enum s390_opcode_cpu_val /* Instruction specific flags. */ #define S390_INSTR_FLAG_OPTPARM 0x1 +#define S390_INSTR_FLAG_HTM 0x2 +#define S390_INSTR_FLAG_VX 0x4 +#define S390_INSTR_FLAG_FACILITY_MASK 0x6 /* The opcode table is an array of struct s390_opcode. */ |