diff options
Diffstat (limited to 'gcc/graph.c')
-rw-r--r-- | gcc/graph.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/graph.c b/gcc/graph.c index 91391a67afc..0ec279d86a9 100644 --- a/gcc/graph.c +++ b/gcc/graph.c @@ -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 \""); |