aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorMichael Meissner <gnu@the-meissners.org>1999-11-05 21:50:54 +0000
committerMichael Meissner <gnu@the-meissners.org>1999-11-05 21:50:54 +0000
commitdd33dc0f45c3818a8fc8239ec1312b5c1830ab93 (patch)
treed266b378b3294b8d3838bc83352debc760436399 /gas
parent93a6d43674ccaf3089bd29f7f3aa7b8e7b65d99c (diff)
downloadgdb-dd33dc0f45c3818a8fc8239ec1312b5c1830ab93.zip
gdb-dd33dc0f45c3818a8fc8239ec1312b5c1830ab93.tar.gz
gdb-dd33dc0f45c3818a8fc8239ec1312b5c1830ab93.tar.bz2
Add more md operators
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/expr.c8
-rw-r--r--gas/expr.h19
3 files changed, 16 insertions, 16 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index cc1993f..94bfdb6 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+1999-11-05 Michael Meissner <meissner@cygnus.com>
+
+ * expr.h (operatorT): Increase machine dependent operators to 16.
+ * expr.c (op_rank): Ditto.
+
1999-11-03 Ian Lance Taylor <ian@zembu.com>
* read.c (pseudo_set): Reject attempts to set the value of a
diff --git a/gas/expr.c b/gas/expr.c
index bb4fd55..ced1239 100644
--- a/gas/expr.c
+++ b/gas/expr.c
@@ -1492,6 +1492,14 @@ static operator_rankT op_rank[] =
0, /* O_md6 */
0, /* O_md7 */
0, /* O_md8 */
+ 0, /* O_md9 */
+ 0, /* O_md10 */
+ 0, /* O_md11 */
+ 0, /* O_md12 */
+ 0, /* O_md13 */
+ 0, /* O_md14 */
+ 0, /* O_md15 */
+ 0, /* O_md16 */
};
/* Unfortunately, in MRI mode for the m68k, multiplication and
diff --git a/gas/expr.h b/gas/expr.h
index d7c7a3b..0ed6af6 100644
--- a/gas/expr.h
+++ b/gas/expr.h
@@ -104,22 +104,9 @@ typedef enum
O_logical_or,
/* X_op_symbol [ X_add_symbol ] */
O_index,
- /* machine dependent #1 */
- O_md1,
- /* machine dependent #2 */
- O_md2,
- /* machine dependent #3 */
- O_md3,
- /* machine dependent #4 */
- O_md4,
- /* machine dependent #5 */
- O_md5,
- /* machine dependent #6 */
- O_md6,
- /* machine dependent #7 */
- O_md7,
- /* machine dependent #8 */
- O_md8,
+ /* machine dependent operators */
+ O_md1, O_md2, O_md3, O_md4, O_md5, O_md6, O_md7, O_md8,
+ O_md9, O_md10, O_md11, O_md12, O_md13, O_md14, O_md15, O_md16,
/* this must be the largest value */
O_max
} operatorT;