This is for PR 628.

Wed Aug 19 11:20:25 1992  Ian Lance Taylor  (ian@cygnus.com)

	* m68k-pinsn.c: handle new operand type 'r', introduced for cas2.
This commit is contained in:
Ian Lance Taylor 1992-08-19 18:27:12 +00:00
parent 0d6d92c707
commit 1090c41efc
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Wed Aug 19 11:20:25 1992 Ian Lance Taylor (ian@cygnus.com)
* m68k-pinsn.c: handle new operand type 'r', introduced for cas2.
Tue Aug 18 20:45:48 1992 Rob Savoye (rob@cygnus.com)
* nm.c objdump.c: Added support for a +version (-V)

View file

@ -270,6 +270,10 @@ print_insn_arg (d, buffer, p, addr, stream)
fprintf_filtered (stream, "%s", reg_names[fetch_arg (buffer, place, 4)]);
break;
case 'r':
fprintf_filtered (stream, "%s@", reg_names[fetch_arg (buffer, place, 4)]);
break;
case 'F':
fprintf_filtered (stream, "fp%d", fetch_arg (buffer, place, 3));
break;