2005-03-23 H.J. Lu <hongjiu.lu@intel.com>

* cris-dis.c (print_with_operands): Use ~31L for long instead
	of ~31.
This commit is contained in:
H.J. Lu 2005-03-23 19:21:16 +00:00
parent b3041f52a5
commit 85064c7906
2 changed files with 6 additions and 1 deletions

View 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.

View 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':