This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 945b86e PR lto/79042 * lto-cgraph.c (lto_output_varpool_node): Pack [...] new c1cb342 [arm] Replace command-line option .def files with single defi [...] new 5c67a27 PR78273 fix count to work with partitioning function new 157a66e PR78134 fix return types of heterogeneous lookup functions
The 3 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: contrib/ChangeLog | 4 + contrib/gcc_update | 7 +- gcc/ChangeLog | 24 + gcc/common/config/arm/arm-common.c | 14 +- gcc/config.gcc | 63 +- gcc/config/arm/arm-arches.def | 67 - gcc/config/arm/arm-cores.def | 188 --- gcc/config/arm/arm-cpu-cdata.h | 1058 +++++++++++++ gcc/config/arm/arm-cpu-data.h | 1652 ++++++++++++++++++++ gcc/config/arm/arm-cpu.h | 162 ++ gcc/config/arm/arm-cpus.in | 1182 ++++++++++++++ gcc/config/arm/arm-fpus.def | 51 - gcc/config/arm/arm-opts.h | 23 +- gcc/config/arm/arm-tables.opt | 85 +- gcc/config/arm/arm-tune.md | 24 +- gcc/config/arm/arm.c | 40 +- gcc/config/arm/genopt.sh | 98 -- gcc/config/arm/gentune.sh | 29 - gcc/config/arm/parsecpu.awk | 491 ++++++ gcc/config/arm/t-arm | 44 +- libstdc++-v3/ChangeLog | 24 + libstdc++-v3/include/bits/stl_map.h | 30 +- libstdc++-v3/include/bits/stl_multimap.h | 28 +- libstdc++-v3/include/bits/stl_multiset.h | 24 +- libstdc++-v3/include/bits/stl_set.h | 26 +- .../testsuite/23_containers/map/operations/2.cc | 49 +- .../23_containers/multimap/operations/2.cc | 27 +- .../23_containers/multiset/operations/2.cc | 27 +- .../testsuite/23_containers/set/operations/2.cc | 50 +- 29 files changed, 4917 insertions(+), 674 deletions(-) delete mode 100644 gcc/config/arm/arm-arches.def delete mode 100644 gcc/config/arm/arm-cores.def create mode 100644 gcc/config/arm/arm-cpu-cdata.h create mode 100644 gcc/config/arm/arm-cpu-data.h create mode 100644 gcc/config/arm/arm-cpu.h create mode 100644 gcc/config/arm/arm-cpus.in delete mode 100644 gcc/config/arm/arm-fpus.def delete mode 100755 gcc/config/arm/genopt.sh delete mode 100755 gcc/config/arm/gentune.sh create mode 100644 gcc/config/arm/parsecpu.awk