2005-03-23 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 23 Mar 2005 19:21:16 +0000 (19:21 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 23 Mar 2005 19:21:16 +0000 (19:21 +0000)
* cris-dis.c (print_with_operands): Use ~31L for long instead
of ~31.

opcodes/ChangeLog
opcodes/cris-dis.c

index db375c204b971ea7f5ca3670f604d7902f4a8e7a..38a17eb8fe9878a93fdc44384ea8f872bcf58ef5 100644 (file)
@@ -1,3 +1,8 @@
+2005-03-23  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * cris-dis.c (print_with_operands): Use ~31L for long instead
+       of ~31.
+
 2005-03-20  H.J. Lu  <hongjiu.lu@intel.com>
 
        * mmix-opc.c (O): Revert the last change.
index d576c108b4008bb8bb8b9c263d25f22d62a564b1..c9bcec7708bd02aabccb15cdbaf13d439e45450c 100644 (file)
@@ -1375,7 +1375,7 @@ print_with_operands (opcodep, insn, buffer, addr, info, prefix_opcodep,
       break;
 
     case 'i':
-      tp = format_dec ((insn & 32) ? (insn & 31) | ~31 : insn & 31, tp, 1);
+      tp = format_dec ((insn & 32) ? (insn & 31) | ~31L : insn & 31, tp, 1);
       break;
 
     case 'P':
This page took 0.026027 seconds and 4 git commands to generate.