diff options
author | Ken Raeburn <raeburn@cygnus> | 1992-10-08 01:13:12 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1992-10-08 01:13:12 +0000 |
commit | 7c9264045a4b05d37a149ffa13ab28c85a92ebeb (patch) | |
tree | 73ae18bb442064f233377ee8adcee61d9b07ac32 /binutils | |
parent | e31e9a8d00269c83d42bd1fa1d243ac5aabf6ae3 (diff) | |
download | gdb-7c9264045a4b05d37a149ffa13ab28c85a92ebeb.zip gdb-7c9264045a4b05d37a149ffa13ab28c85a92ebeb.tar.gz gdb-7c9264045a4b05d37a149ffa13ab28c85a92ebeb.tar.bz2 |
* 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.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 6 | ||||
-rw-r--r-- | binutils/copy.c | 6 | ||||
-rw-r--r-- | binutils/m68k-pinsn.c | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 5e730b9..3181580 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -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) diff --git a/binutils/copy.c b/binutils/copy.c index e1ac8a8..52a99aa 100644 --- a/binutils/copy.c +++ b/binutils/copy.c @@ -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(); } diff --git a/binutils/m68k-pinsn.c b/binutils/m68k-pinsn.c index da09b3f..2027b25 100644 --- a/binutils/m68k-pinsn.c +++ b/binutils/m68k-pinsn.c @@ -420,6 +420,7 @@ print_insn_arg (d, buffer, p, addr, stream) case '?': case '/': case '&': + case '`': if (place == 'd') { |