* error.c (dump_tree): Use output_add_string not OB_PUTS.
authorRichard Henderson <rth@redhat.com>
Tue, 5 Dec 2000 00:18:23 +0000 (16:18 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Tue, 5 Dec 2000 00:18:23 +0000 (16:18 -0800)
From-SVN: r38021

gcc/cp/ChangeLog
gcc/cp/error.c

index 105f04789aa44491a923a35b28b4cd07978d7232..c3a36ab0d022bdf07d4b9ff2a68b553cc4c3e184 100644 (file)
@@ -1,3 +1,7 @@
+2000-12-04  Richard Henderson  <rth@redhat.com>
+
+       * error.c (dump_tree): Use output_add_string not OB_PUTS.
+
 2000-12-04  Jason Merrill  <jason@redhat.com>
 
        * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
index 45863e1bd33ef9a03c65f4d76135b9fac89a693f..92953b9bf156f5ac49a7f27ed97457d042ca125c 100644 (file)
@@ -448,7 +448,7 @@ dump_type (t, flags)
       break;
 
     case VECTOR_TYPE:
-      OB_PUTS ("vector ");
+      output_add_string (scratch_buffer, "vector ");
       dump_type (TREE_TYPE (t), flags);
       break;