aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-mudflap.c
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@integrable-solutions.net>2013-08-04 16:47:42 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2013-08-04 16:47:42 +0000
commit137a1a27e25efa3c13842c1c91a55947ed005412 (patch)
treea9fb7dfe70a003cc0c4e1eece6d35bd2539f1fee /gcc/tree-mudflap.c
parent8ee9fbe1976e0e237ac5defc6ee398f9f5f77c9e (diff)
downloadgcc-137a1a27e25efa3c13842c1c91a55947ed005412.zip
gcc-137a1a27e25efa3c13842c1c91a55947ed005412.tar.gz
gcc-137a1a27e25efa3c13842c1c91a55947ed005412.tar.bz2
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
Diffstat (limited to 'gcc/tree-mudflap.c')
-rw-r--r--gcc/tree-mudflap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-mudflap.c b/gcc/tree-mudflap.c
index b250bfe..ae51e6c 100644
--- a/gcc/tree-mudflap.c
+++ b/gcc/tree-mudflap.c
@@ -138,12 +138,12 @@ mf_varname_tree (tree decl)
if (sourceline != 0)
{
- pp_string (buf, ":");
+ pp_colon (buf);
pp_decimal_int (buf, sourceline);
if (sourcecolumn != 0)
{
- pp_string (buf, ":");
+ pp_colon (buf);
pp_decimal_int (buf, sourcecolumn);
}
}
@@ -165,7 +165,7 @@ mf_varname_tree (tree decl)
pp_string (buf, ") ");
}
else
- pp_string (buf, " ");
+ pp_space (buf);
/* Add <variable-declaration>, possibly demangled. */
{