* txvu-dis.c (print_insn_txvu): Handle no separator between
authorDoug Evans <dje@google.com>
Tue, 6 Jan 1998 13:09:00 +0000 (13:09 +0000)
committerDoug Evans <dje@google.com>
Tue, 6 Jan 1998 13:09:00 +0000 (13:09 +0000)
upper and lower insn #ifndef VERTICAL_BAR_SEPARATOR.

opcodes/ChangeLog
opcodes/txvu-dis.c

index fa423dc0ae123d0d67a60e5121a69c8a36e552f3..3a75c441b75830b905d45d9d33930eaf2a0fa13c 100644 (file)
@@ -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.
index 8383ed3cba789fe15317cba99a08283222fa42de..d30bf223a806c7681584b56601114111415ed727 100644 (file)
@@ -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;