mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
* 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:
parent
e31e9a8d00
commit
7c9264045a
@ -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)
|
||||
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -420,6 +420,7 @@ print_insn_arg (d, buffer, p, addr, stream)
|
||||
case '?':
|
||||
case '/':
|
||||
case '&':
|
||||
case '`':
|
||||
|
||||
if (place == 'd')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user