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:
authorAlexandre Oliva <aoliva@redhat.com>2001-12-04 13:06:40 +0300
committerAlexandre Oliva <aoliva@redhat.com>2001-12-04 13:06:40 +0300
commitbb9cc3dba0720ccee309ce3af19c370760611f1f (patch)
treeebd7b50539fd0d848b1825a9dd31c554f97a05d2
parent63928f6088d7f44f4f8d3962aff68891071a2fb6 (diff)
* d10v.h (OPERAND_NOSP): New macro.
-rw-r--r--include/opcode/ChangeLog4
-rw-r--r--include/opcode/d10v.h5
2 files changed, 9 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index 392bf7ef3..b90298638 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,3 +1,7 @@
+2001-12-04 Alexandre Oliva <aoliva@redhat.com>
+
+ * d10v.h (OPERAND_NOSP): New macro.
+
2001-11-29 Alexandre Oliva <aoliva@redhat.com>
* d10v.h (OPERAND_SP): New macro.
diff --git a/include/opcode/d10v.h b/include/opcode/d10v.h
index 9ae5d1748..cc27850b0 100644
--- a/include/opcode/d10v.h
+++ b/include/opcode/d10v.h
@@ -184,6 +184,11 @@ extern const struct d10v_operand d10v_operands[];
/* Pre-decrement is only supported for SP. */
#define OPERAND_SP (0x100000)
+/* Post-decrement is not supported for SP. Like OPERAND_EVEN, and
+ unlike OPERAND_SP, this flag doesn't prevent the instruction from
+ matching, it only fails validation later on. */
+#define OPERAND_NOSP (0x200000)
+
/* Structure to hold information about predefined registers. */
struct pd_reg
{