diff options
Diffstat (limited to 'gcc/pretty-print.c')
-rw-r--r-- | gcc/pretty-print.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/pretty-print.c b/gcc/pretty-print.c index 9ec8030a..94952c3 100644 --- a/gcc/pretty-print.c +++ b/gcc/pretty-print.c @@ -190,7 +190,6 @@ pp_base_indent (pretty_printer *pp) %.*s: a substring the length of which is specified by an argument integer. %Ns: likewise, but length specified as constant in the format string. - %J: a decl tree, from which DECL_SOURCE_LOCATION will be recorded. %K: a statement, from which EXPR_LOCATION and TREE_BLOCK will be recorded. Flag 'q': quote formatted text (must come immediately after '%'). @@ -475,14 +474,6 @@ pp_base_format (pretty_printer *pp, text_info *text) (pp, *text->args_ptr, precision, unsigned, "x"); break; - case 'J': - { - tree t = va_arg (*text->args_ptr, tree); - gcc_assert (text->locus != NULL); - *text->locus = DECL_SOURCE_LOCATION (t); - } - break; - case 'K': { tree t = va_arg (*text->args_ptr, tree), block; |