* error.c (dump_tree): Use output_add_string not OB_PUTS.

From-SVN: r38021
This commit is contained in:
Richard Henderson 2000-12-04 16:18:23 -08:00 committed by Richard Henderson
parent 675ad22cfc
commit 39abc9a650
2 changed files with 5 additions and 1 deletions

View 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> 2000-12-04 Jason Merrill <jason@redhat.com>
* mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector". * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".

View File

@ -448,7 +448,7 @@ dump_type (t, flags)
break; break;
case VECTOR_TYPE: case VECTOR_TYPE:
OB_PUTS ("vector "); output_add_string (scratch_buffer, "vector ");
dump_type (TREE_TYPE (t), flags); dump_type (TREE_TYPE (t), flags);
break; break;