]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/graph.c
pretty-print.h (output_buffer::output_buffer): Declare.
[thirdparty/gcc.git] / gcc / graph.c
index 91391a67afcd52d4251f0df116752756ade3b828..0ec279d86a9a6150c085e63337ba7ca11ac7a4b0 100644 (file)
@@ -278,7 +278,6 @@ print_graph_cfg (const char *base, struct function *fun)
   const char *funcname = function_name (fun);
   FILE *fp = open_graph_file (base, "a");
   pretty_printer graph_slim_pp;
-  pp_construct (&graph_slim_pp, /*prefix=*/NULL, /*linewidth=*/0);
   graph_slim_pp.buffer->stream = fp;
   pretty_printer *const pp = &graph_slim_pp;
   pp_printf (pp, "subgraph \"%s\" {\n"
@@ -297,7 +296,6 @@ static void
 start_graph_dump (FILE *fp, const char *base)
 {
   pretty_printer graph_slim_pp;
-  pp_construct (&graph_slim_pp, /*prefix=*/NULL, /*linewidth=*/0);
   graph_slim_pp.buffer->stream = fp;
   pretty_printer *const pp = &graph_slim_pp;
   pp_string (pp, "digraph \"");