2005-03-20 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Sun, 20 Mar 2005 17:12:16 +0000 (17:12 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Sun, 20 Mar 2005 17:12:16 +0000 (17:12 +0000)
* mmix-opc.c (O): Revert the last change.
(Z): Likewise.

opcodes/ChangeLog
opcodes/mmix-opc.c

index 53a23fe072f05d3590cc84c0a46938c67163d972..db375c204b971ea7f5ca3670f604d7902f4a8e7a 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * mmix-opc.c (O): Revert the last change.
+       (Z): Likewise.
+
 2005-03-19  H.J. Lu  <hongjiu.lu@intel.com>
 
        * mmix-opc.c (O): Use 24UL instead of 24 for unsigned long.
index ecd3cb4ef0853664e8faf5b09d4311e39b7c8f76..0298818ab389c931a65618d5ee3bfbab05b32561 100644 (file)
@@ -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
This page took 0.026005 seconds and 4 git commands to generate.