mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-23 13:21:43 +08:00
* txvu-dis.c (print_insn_txvu): Handle no separator between
upper and lower insn #ifndef VERTICAL_BAR_SEPARATOR.
This commit is contained in:
parent
e0e0fc765e
commit
42639e838c
@ -1,4 +1,9 @@
|
||||
start-sanitize-sky
|
||||
Tue Jan 6 13:08:14 1998 Doug Evans <devans@seba.cygnus.com>
|
||||
|
||||
* txvu-dis.c (print_insn_txvu): Handle no separator between
|
||||
upper and lower insn #ifndef VERTICAL_BAR_SEPARATOR.
|
||||
|
||||
Mon Jan 5 13:41:07 1998 Doug Evans <devans@seba.cygnus.com>
|
||||
|
||||
* txvu-dis.c, txvu-opc.c: New files.
|
||||
|
@ -55,7 +55,14 @@ print_insn_txvu (pc, info)
|
||||
|
||||
/* FIXME: This will need revisiting. */
|
||||
print_insn (pc, info, upper, 0);
|
||||
#ifdef VERTICAL_BAR_SEPARATOR
|
||||
(*func) (stream, " | ");
|
||||
#else
|
||||
/* Not sure how much whitespace to print here.
|
||||
At least two spaces, not more than 9, and having columns line up somewhat
|
||||
seems reasonable. */
|
||||
(*func) (stream, " \t");
|
||||
#endif
|
||||
print_insn (pc, info, lower, 1);
|
||||
|
||||
return 8;
|
||||
|
Loading…
Reference in New Issue
Block a user