This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 72e85d46472 tree-optimization/120780: Support object size for containin [...] new 9930876ed78 libstdc++: construct bitset from string_view (P2697) [PR119742] new 53242a56844 AArch64: place branch instruction rules together new cfb1a083e16 AArch64: reformat branch instruction rules new 2cc9b03a846 AArch64: rename branch instruction rules new 70905bad8ea AArch64: add constants for branch displacements new 6cc3cdddeb3 AArch64: make `far_branch` attribute a boolean new 2e021e34ea1 AArch64: recognize `+cmpbr` option new bda03ce9125 AArch64: precommit test for CMPBR instructions new 2e95ef6ca3e AArch64: rules for CMPBR instructions new 44b9769593a AArch64: make rules for CBZ/TBZ higher priority
The 10 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/config/aarch64/aarch64-option-extensions.def | 2 + gcc/config/aarch64/aarch64-protos.h | 2 + gcc/config/aarch64/aarch64-simd.md | 2 +- gcc/config/aarch64/aarch64-sme.md | 2 +- gcc/config/aarch64/aarch64.cc | 39 +- gcc/config/aarch64/aarch64.h | 3 + gcc/config/aarch64/aarch64.md | 570 +++--- gcc/config/aarch64/constraints.md | 18 + gcc/config/aarch64/iterators.md | 30 + gcc/doc/invoke.texi | 3 + gcc/testsuite/gcc.target/aarch64/cmpbr.c | 1824 ++++++++++++++++++++ gcc/testsuite/lib/target-supports.exp | 14 +- libstdc++-v3/include/bits/version.def | 8 + libstdc++-v3/include/bits/version.h | 10 + libstdc++-v3/include/std/bitset | 82 +- libstdc++-v3/testsuite/20_util/bitset/cons/1.cc | 1 + libstdc++-v3/testsuite/20_util/bitset/cons/6282.cc | 5 +- .../testsuite/20_util/bitset/cons/string_view.cc | 132 ++ .../20_util/bitset/cons/string_view_wide.cc | 8 + 19 files changed, 2500 insertions(+), 255 deletions(-) create mode 100644 gcc/testsuite/gcc.target/aarch64/cmpbr.c create mode 100644 libstdc++-v3/testsuite/20_util/bitset/cons/string_view.cc create mode 100644 libstdc++-v3/testsuite/20_util/bitset/cons/string_view_wide.cc