diff options
author | Andreas Krebbel <krebbel@linux.ibm.com> | 2024-10-08 12:04:31 +0200 |
---|---|---|
committer | Jens Remus <jremus@linux.ibm.com> | 2024-10-10 12:09:40 +0200 |
commit | a98a6fa2d8ef5eb61534b07db80850dcdf07bdb4 (patch) | |
tree | 793fedea1dc4c5ee88a2c79c672d74209265359b /include | |
parent | 1001055e3552760015661dd9b081435051fe1340 (diff) | |
download | binutils-a98a6fa2d8ef5eb61534b07db80850dcdf07bdb4.zip binutils-a98a6fa2d8ef5eb61534b07db80850dcdf07bdb4.tar.gz binutils-a98a6fa2d8ef5eb61534b07db80850dcdf07bdb4.tar.bz2 |
s390: Add arch15 instructions
opcodes/
* s390-mkopc.c (main) Accept arch15 as CPU string.
* s390-opc.txt: Add arch15 instructions.
include/
* opcode/s390.h (enum s390_opcode_cpu_val): Add
S390_OPCODE_ARCH15.
gas/
* config/tc-s390.c (s390_parse_cpu): New entry for arch15.
* doc/c-s390.texi: Document arch15 march option.
* doc/as.texi: Likewise.
* testsuite/gas/s390/s390.exp: Run the arch15 related tests.
* testsuite/gas/s390/zarch-arch15.d: Tests for arch15
instructions.
* testsuite/gas/s390/zarch-arch15.s: Likewise.
Signed-off-by: Andreas Krebbel <krebbel@linux.ibm.com>
Reviewed-by: Jens Remus <jremus@linux.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/s390.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/opcode/s390.h b/include/opcode/s390.h index 8de0370..8322882 100644 --- a/include/opcode/s390.h +++ b/include/opcode/s390.h @@ -45,6 +45,7 @@ enum s390_opcode_cpu_val S390_OPCODE_ARCH12, S390_OPCODE_ARCH13, S390_OPCODE_ARCH14, + S390_OPCODE_ARCH15, S390_OPCODE_MAXCPU }; |