* copy.c (main): Even if is_strip, accept -d argument indicating alternate

output format.  Needed by gdb for Nindy.

* m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.
This commit is contained in:
Ken Raeburn 1992-10-08 01:13:12 +00:00
parent e31e9a8d00
commit 7c9264045a
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,9 @@
Wed Oct 7 12:53:52 1992 Ken Raeburn (raeburn@cygnus.com)
* copy.c (main): Even if is_strip, accept -d argument indicating
alternate output format. Needed by gdb for Nindy.
* m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.
Tue Oct 6 16:33:56 1992 Jeffrey Osier (jeffrey@cygnus.com) Tue Oct 6 16:33:56 1992 Jeffrey Osier (jeffrey@cygnus.com)

View File

@ -421,6 +421,12 @@ main(argc, argv)
verbose = true; verbose = true;
show_version = true; show_version = true;
break; break;
/* undocumented for now */
case 'd':
i++;
output_target = argv[i];
break;
default: default:
strip_usage(); strip_usage();
} }

View File

@ -420,6 +420,7 @@ print_insn_arg (d, buffer, p, addr, stream)
case '?': case '?':
case '/': case '/':
case '&': case '&':
case '`':
if (place == 'd') if (place == 'd')
{ {