]> git.ipfire.org Git - thirdparty/gcc.git/commit - gcc/pretty-print.c
diagnostics: Add %{...%} pretty-format support for URLs and use it in -Wpsabi diagnostics
authorJakub Jelinek <jakub@redhat.com>
Wed, 29 Apr 2020 20:41:47 +0000 (22:41 +0200)
committerJakub Jelinek <jakub@redhat.com>
Wed, 29 Apr 2020 20:41:47 +0000 (22:41 +0200)
commit691eeb65a01dab3084b6ce381737adf097bd2e65
tree0d1b729fa533287e181c110c95c7543f9571e358
parent48e54fea7ba4a7cb7b3d1505951383120220e394
diagnostics: Add %{...%} pretty-format support for URLs and use it in -Wpsabi diagnostics

The following patch attempts to use the diagnostics URL support if available
to provide more information about the C++17 empty base and C++20
[[no_unique_address]] empty class ABI changes in -Wpsabi diagnostics.

in GCC 10.1 at the end of the diagnostics is then in some terminals
underlined with a dotted line and points to a (to be written) anchor in
gcc-10/changes.html which we need to write anyway.

2020-04-29  Jakub Jelinek  <jakub@redhat.com>

* configure.ac (-with-changes-root-url): New configure option,
defaulting to https://gcc.gnu.org/.
* Makefile.in (CFLAGS-opts.o): Define CHANGES_ROOT_URL for
opts.c.
* pretty-print.c (get_end_url_string): New function.
(pp_format): Handle %{ and %} for URLs.
(pp_begin_url): Use pp_string instead of pp_printf.
(pp_end_url): Use get_end_url_string.
* opts.h (get_changes_url): Declare.
* opts.c (get_changes_url): New function.
* config/rs6000/rs6000-call.c: Include opts.h.
(rs6000_discover_homogeneous_aggregate): Use %{in GCC 10.1%} instead
of just in GCC 10.1 in diagnostics and add URL.
* config/arm/arm.c (aapcs_vfp_is_call_or_return_candidate): Likewise.
* config/aarch64/aarch64.c (aarch64_vfp_is_call_or_return_candidate):
Likewise.
* config/s390/s390.c (s390_function_arg_vector,
s390_function_arg_float): Likewise.
* configure: Regenerated.

* c-format.c (PP_FORMAT_CHAR_TABLE): Add %{ and %}.
13 files changed:
gcc/ChangeLog
gcc/Makefile.in
gcc/c-family/ChangeLog
gcc/c-family/c-format.c
gcc/config/aarch64/aarch64.c
gcc/config/arm/arm.c
gcc/config/rs6000/rs6000-call.c
gcc/config/s390/s390.c
gcc/configure
gcc/configure.ac
gcc/opts.c
gcc/opts.h
gcc/pretty-print.c