summaryrefslogtreecommitdiff
path: root/opcodes/mmix-opc.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2005-03-20 17:12:16 +0000
committerH.J. Lu <hjl@lucon.org>2005-03-20 17:12:16 +0000
commitb81bd119cf12b16be5c0765e4afaba8ca307d365 (patch)
tree07e208f49a2b4cb38ca6aac72f2749c64b6bc377 /opcodes/mmix-opc.c
parentba11c6ae9522f0ad41a585bc76a8e53b5f96180c (diff)
downloadgdb-b81bd119cf12b16be5c0765e4afaba8ca307d365.tar.gz
2005-03-20 H.J. Lu <hongjiu.lu@intel.com>
* mmix-opc.c (O): Revert the last change. (Z): Likewise.
Diffstat (limited to 'opcodes/mmix-opc.c')
-rw-r--r--opcodes/mmix-opc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/mmix-opc.c b/opcodes/mmix-opc.c
index ecd3cb4ef08..0298818ab38 100644
--- a/opcodes/mmix-opc.c
+++ b/opcodes/mmix-opc.c
@@ -67,11 +67,11 @@ const struct mmix_spec_reg mmix_spec_regs[] =
/* All bits in the opcode-byte are significant. Add "| ..." expressions
to add zero-bits. */
#undef O
-#define O(m) ((unsigned long) (m) << 24UL), ((~(unsigned long) (m) & 255) << 24UL)
+#define O(m) ((unsigned long) (m) << 24UL), ((~(unsigned long) (m) & 255) << 24)
/* Bits 7..1 of the opcode are significant. */
#undef Z
-#define Z(m) ((unsigned long) (m) << 24UL), ((~(unsigned long) (m) & 254) << 24UL)
+#define Z(m) ((unsigned long) (m) << 24), ((~(unsigned long) (m) & 254) << 24)
/* For easier overview of the table. */
#define N mmix_type_normal