diff options
author | Martin Sebor <msebor@redhat.com> | 2021-07-06 14:13:31 -0600 |
---|---|---|
committer | Martin Sebor <msebor@redhat.com> | 2021-07-06 14:14:25 -0600 |
commit | 4f6e181181a48c341e524653cae0885fd170131e (patch) | |
tree | 7add41289221a44a977803ded481637e102b9c52 /gcc/tree-pretty-print.c | |
parent | 62e43587ef1c874b62a6c4c5c3980969e4a2da97 (diff) | |
download | gcc-4f6e181181a48c341e524653cae0885fd170131e.zip gcc-4f6e181181a48c341e524653cae0885fd170131e.tar.gz gcc-4f6e181181a48c341e524653cae0885fd170131e.tar.bz2 |
Remove support for %G and %K.
gcc/c-family/ChangeLog:
* c-format.c (gcc_tdiag_char_table): Remove support for %G and %K.
(gcc_cdiag_char_table): Same.
(gcc_cxxdiag_char_table): Same.
gcc/c/ChangeLog:
* c-objc-common.c (c_tree_printer): Remove support for %G and %K.
gcc/cp/ChangeLog:
* error.c (cp_printer): Remove support for %G and %K.
gcc/ChangeLog:
* gimple-pretty-print.c (percent_G_format): Remove.
* tree-diagnostic.c (default_tree_printer): Remove calls.
* tree-pretty-print.c (percent_K_format): Remove.
* tree-pretty-print.h (percent_K_format): Remove.
gcc/testsuite/ChangeLog:
* gcc.dg/format/gcc_diag-10.c: Update expected warnings.
* gcc.dg/plugin/diagnostic_plugin_test_inlining.c: Remove %G.
Diffstat (limited to 'gcc/tree-pretty-print.c')
-rw-r--r-- | gcc/tree-pretty-print.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc/tree-pretty-print.c b/gcc/tree-pretty-print.c index bcbe669..fde07df 100644 --- a/gcc/tree-pretty-print.c +++ b/gcc/tree-pretty-print.c @@ -4433,32 +4433,6 @@ newline_and_indent (pretty_printer *pp, int spc) INDENT (spc); } -/* Handle the %K format for TEXT. Separate from default_tree_printer - so it can also be used in front ends. - The location LOC and BLOCK are expected to be extracted by the caller - from the %K argument arg via EXPR_LOCATION(arg) and TREE_BLOCK(arg). */ - -void -percent_K_format (text_info *text, location_t loc, tree block) -{ - text->set_location (0, loc, SHOW_RANGE_WITH_CARET); - gcc_assert (pp_ti_abstract_origin (text) != NULL); - *pp_ti_abstract_origin (text) = NULL; - - while (block - && TREE_CODE (block) == BLOCK - && BLOCK_ABSTRACT_ORIGIN (block)) - { - tree ao = BLOCK_ABSTRACT_ORIGIN (block); - if (TREE_CODE (ao) == FUNCTION_DECL) - { - *pp_ti_abstract_origin (text) = block; - break; - } - block = BLOCK_SUPERCONTEXT (block); - } -} - /* Print the identifier ID to PRETTY-PRINTER. */ void |