Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schwidefsky <schwidefsky@de.ibm.com>2005-08-12 22:02:38 +0400
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2005-08-12 22:02:38 +0400
commitb527e96688b2a63b43c8b0eb5a091d13e05be795 (patch)
treee5a6826edaf6599b6531d010e0ca872bdf4f3721 /include
parent60cfca657cb13f721b6bc444c67db5d47225d473 (diff)
* s390.h (s390_opcode_cpu_val): Add enum for cpu type z9-109.
Diffstat (limited to 'include')
-rw-r--r--include/opcode/ChangeLog4
-rw-r--r--include/opcode/s390.h9
2 files changed, 11 insertions, 2 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index 045b4a92d..88c2c829b 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,3 +1,7 @@
+2005-08-12 Martin Schwidefsky <schwidefsky@de.ibm.com>
+
+ * s390.h (s390_opcode_cpu_val): Add enum for cpu type z9-109.
+
2005-07-28 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR gas/336
diff --git a/include/opcode/s390.h b/include/opcode/s390.h
index ac06555fe..7bb30de28 100644
--- a/include/opcode/s390.h
+++ b/include/opcode/s390.h
@@ -35,7 +35,8 @@ enum s390_opcode_cpu_val
S390_OPCODE_G5 = 0,
S390_OPCODE_G6,
S390_OPCODE_Z900,
- S390_OPCODE_Z990
+ S390_OPCODE_Z990,
+ S390_OPCODE_Z9_109
};
/* The opcode table is an array of struct s390_opcode. */
@@ -138,4 +139,8 @@ extern const struct s390_operand s390_operands[];
/* This operand is a length. */
#define S390_OPERAND_LENGTH 0x200
-#endif /* S390_H */
+/* This operand is optional. Only a single operand at the end of
+ the instruction may be optional. */
+#define S390_OPERAND_OPTIONAL 0x400
+
+ #endif /* S390_H */