From 137a1a27e25efa3c13842c1c91a55947ed005412 Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Sun, 4 Aug 2013 16:47:42 +0000 Subject: pretty-print.h (pp_bar_bar): New. * pretty-print.h (pp_bar_bar): New. (pp_ampersand_ampersand): Likewise. (pp_less_equal): Likewise. (pp_greater_equal): Likewise. * gimple-pretty-print.c (dump_ternary_rhs): Use specialized pretty printer functions instead of pp_string or operators and punctuators. (dump_gimple_call): Likewise. (dump_gimple_omp_for): Likewise. (dump_gimple_transaction): Likewise. (dump_gimple_phi): Likewise. (pp_gimple_stmt_1): Likewise. * sched-vis.c (print_insn): Likewise. * tree-mudflap.c (mf_varname_tree): Likewise. * tree-pretty-print.c (dump_block_node): Likewise. (dump_generic_node): Likewise. c-family/ * c-ada-spec.c (pp_ada_tree_identifier): Use specialized pretty printer functions instead of pp_string or operators and punctuators. (dump_generic_ada_node): Likewise. * c-pretty-print.c (pp_c_type_specifier): Likewise. (pp_c_relational_expression): Likewise. (pp_c_logical_or_expression): Likewise. cp/ * error.c (dump_type_prefix): Use specialized pretty printer functions instead of pp_string or operators and punctuators. (dump_decl): Likewise. (dump_expr): Likewise. From-SVN: r201474 --- gcc/sched-vis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/sched-vis.c') diff --git a/gcc/sched-vis.c b/gcc/sched-vis.c index d11a385..3211eaf 100644 --- a/gcc/sched-vis.c +++ b/gcc/sched-vis.c @@ -690,7 +690,7 @@ print_insn (pretty_printer *pp, const_rtx x, int verbose) case JUMP_TABLE_DATA: pp_string (pp, "jump_table_data{\n"); print_pattern (pp, PATTERN (x), verbose); - pp_string (pp, "}"); + pp_right_brace (pp); break; case BARRIER: pp_string (pp, "barrier"); -- cgit v1.1