This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 31c08879dcc c++: handle misspelled concepts and missing #include <concepts> new 5a022062d22 diagnostics: UX: add doc URLs for attributes (v2)
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/Makefile.in | 13 ++ gcc/analyzer/region-model.cc | 2 + gcc/analyzer/sm-taint.cc | 2 + gcc/attr-urls.def | 377 ++++++++++++++++++++++++++++++++++++ gcc/attribs.cc | 3 + gcc/c-family/c-attribs.cc | 3 + gcc/c-family/c-common.cc | 18 +- gcc/c-family/c-warn.cc | 2 + gcc/c/c-decl.cc | 17 +- gcc/c/c-parser.cc | 20 +- gcc/c/c-typeck.cc | 3 + gcc/config/aarch64/aarch64.cc | 3 + gcc/config/arc/arc.cc | 3 + gcc/config/arm/arm.cc | 3 + gcc/config/bfin/bfin.cc | 3 + gcc/config/bpf/bpf.cc | 3 + gcc/config/epiphany/epiphany.cc | 3 + gcc/config/gcn/gcn.cc | 3 + gcc/config/h8300/h8300.cc | 3 + gcc/config/i386/i386.cc | 3 + gcc/config/ia64/ia64.cc | 3 + gcc/config/m32c/m32c.cc | 3 + gcc/config/m32r/m32r.cc | 3 + gcc/config/m68k/m68k.cc | 3 + gcc/config/mcore/mcore.cc | 3 + gcc/config/microblaze/microblaze.cc | 3 + gcc/config/mips/mips.cc | 3 + gcc/config/msp430/msp430.cc | 3 + gcc/config/nds32/nds32.cc | 3 + gcc/config/nvptx/nvptx.cc | 3 + gcc/config/riscv/riscv.cc | 3 + gcc/config/rl78/rl78.cc | 3 + gcc/config/rs6000/rs6000.cc | 3 + gcc/config/rx/rx.cc | 3 + gcc/config/s390/s390.cc | 3 + gcc/config/sh/sh.cc | 3 + gcc/config/stormy16/stormy16.cc | 3 + gcc/config/v850/v850.cc | 2 + gcc/config/visium/visium.cc | 3 + gcc/cp/cp-gimplify.cc | 8 +- gcc/cp/cvt.cc | 4 + gcc/cp/decl.cc | 15 +- gcc/diagnostic.cc | 8 + gcc/diagnostic.h | 2 + gcc/doc/extend.texi | 4 +- gcc/doc/tm.texi | 5 + gcc/doc/tm.texi.in | 2 + gcc/gcc-attribute-urlifier.cc | 243 +++++++++++++++++++++++ gcc/gcc-urlifier.cc | 49 +++-- gcc/gcc-urlifier.h | 57 ++++++ gcc/gimple-ssa-warn-access.cc | 3 + gcc/gimplify.cc | 3 + gcc/internal-fn.cc | 3 + gcc/ipa-pure-const.cc | 2 + gcc/ipa-strub.cc | 3 + gcc/regenerate-attr-urls.py | 209 ++++++++++++++++++++ gcc/selftest-run-tests.cc | 1 + gcc/selftest.h | 1 + gcc/target.def | 9 + gcc/tree-cfg.cc | 3 + gcc/tree-ssa-uninit.cc | 3 + 61 files changed, 1140 insertions(+), 40 deletions(-) create mode 100644 gcc/attr-urls.def create mode 100644 gcc/gcc-attribute-urlifier.cc create mode 100755 gcc/regenerate-attr-urls.py