aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1998-01-06 13:09:00 +0000
committerDoug Evans <dje@google.com>1998-01-06 13:09:00 +0000
commit42639e838c251504d55d9c69c933eda23c815959 (patch)
tree3876c513267a7774b4356551a450a49786dd004f /opcodes
parente0e0fc765e2732afd481fad4361a82a0e859c1b7 (diff)
downloadgdb-42639e838c251504d55d9c69c933eda23c815959.zip
gdb-42639e838c251504d55d9c69c933eda23c815959.tar.gz
gdb-42639e838c251504d55d9c69c933eda23c815959.tar.bz2
* txvu-dis.c (print_insn_txvu): Handle no separator between
upper and lower insn #ifndef VERTICAL_BAR_SEPARATOR.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/txvu-dis.c7
2 files changed, 12 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index fa423dc..3a75c44 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -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.
diff --git a/opcodes/txvu-dis.c b/opcodes/txvu-dis.c
index 8383ed3..d30bf22 100644
--- a/opcodes/txvu-dis.c
+++ b/opcodes/txvu-dis.c
@@ -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;