From: H.J. Lu Date: Sun, 20 Mar 2005 17:12:16 +0000 (+0000) Subject: 2005-03-20 H.J. Lu X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b81bd119cf12b16be5c0765e4afaba8ca307d365;p=pf3gnuchains%2Fpf3gnuchains3x.git 2005-03-20 H.J. Lu * mmix-opc.c (O): Revert the last change. (Z): Likewise. --- diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 53a23fe072..db375c204b 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2005-03-20 H.J. Lu + + * mmix-opc.c (O): Revert the last change. + (Z): Likewise. + 2005-03-19 H.J. Lu * mmix-opc.c (O): Use 24UL instead of 24 for unsigned long. diff --git a/opcodes/mmix-opc.c b/opcodes/mmix-opc.c index ecd3cb4ef0..0298818ab3 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