* 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

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