This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk/gnu-master-aarch64-spec2k6-Os_LTO in repository toolchain/ci/gcc.
from ad670379087 2019-05-19 Paul Thomas pault@gcc.gnu.org adds 1e4b190953d * MAINTAINERS: Update my email address. adds 69024fb73f8 libfortran/90038 Reap dead children when wait=.false. adds 80d89d40e6d rs6000: Delete the "wo" constraint adds 2d9d920fbaf rs6000: Delete the "wb" constraint adds 59a7f19ad70 rs6000: Delete "wJ" and "wK" constraints adds 1004c930300 rs6000: Delete the "wu" constraint adds 53abbe91e7e rs6000: Delete the "wy" constraint adds 8e39f4ba675 rs6000: Delete the "wH" and "wI" constraints adds 76bfe522ab1 Daily bump. adds db9c2a1461e [PATCH] Fix PR 81721: ICE with PCH and Pragma warning and C [...] adds e1dcb74d1ce 2019-05-20 Richard Biener rguenther@suse.de adds 5eb3f7191a7 Use capital letters for enum value names. adds 3451e82b98f Do not use full qualified names if possible. adds 1569cde1bac Add vertical spacing in order to separate functions. adds 048f6aad2c1 Come up with hook libc_has_fast_function (PR middle-end/90263). adds ff53bc9513e Add missing default default_libc_has_fast_function implementation. adds 8ca16e0114a [testsuite] aarch64,arm Add missing quotes to expected erro [...] adds e7419472abe * cfgloop.h (struct loop): Add simdlen member. * cfgloopm [...] adds 143aadc0cfb 2019-05-20 Richard Biener rguenther@suse.de adds 2b6f7be06f6 Add missing ATTRIBUTE_UNUSED for ix86_libc_has_fast_function. adds ca32b3df9bb Fix test bug with mismatched alignment in allocate/deallocate adds d07edb653ef std::allocator::deallocate support sized-deallocation adds 12187801c9f Fix %e in Solaris specs adds be61629badb Reject -mx32 on Solaris/x86 adds 48328bff258 PR c++/90532 Ensure __is_constructible(T[]) is false adds ce7b4f26770 * tree-ssa-alias.c (compare_sizes): New function. (sompar [...]
No new revisions were added by this update.
Summary of changes: ChangeLog | 4 + MAINTAINERS | 2 +- gcc/ChangeLog | 180 ++++++++++ gcc/DATESTAMP | 2 +- gcc/builtins.c | 17 +- gcc/cfgloop.h | 3 + gcc/cfgloopmanip.c | 1 + gcc/config/aarch64/aarch64.c | 2 +- gcc/config/arc/arc.c | 2 +- gcc/config/arm/arm.c | 4 +- gcc/config/i386/i386.c | 28 +- gcc/config/i386/sol2.h | 5 +- gcc/config/mips/mips.c | 2 +- gcc/config/rs6000/altivec.md | 54 +-- gcc/config/rs6000/constraints.md | 24 -- gcc/config/rs6000/rs6000.c | 53 +-- gcc/config/rs6000/rs6000.h | 8 - gcc/config/rs6000/rs6000.md | 364 ++++++++++++--------- gcc/config/rs6000/vsx.md | 82 +++-- gcc/config/sol2.h | 4 +- gcc/cp/ChangeLog | 6 + gcc/cp/method.c | 2 + gcc/doc/md.texi | 28 +- gcc/doc/tm.texi | 9 +- gcc/doc/tm.texi.in | 2 + gcc/expr.c | 13 +- gcc/expr.h | 4 +- gcc/fold-const.c | 63 +--- gcc/fold-const.h | 3 + gcc/generic-match-head.c | 1 + gcc/gimple-match-head.c | 1 + gcc/match.pd | 83 +++++ gcc/omp-expand.c | 7 + gcc/omp-general.c | 2 +- gcc/omp-low.c | 2 +- gcc/optabs-query.c | 2 +- gcc/profile-count.c | 24 +- gcc/profile-count.h | 324 ++++++++++-------- gcc/target.def | 11 +- gcc/targhooks.c | 10 +- gcc/targhooks.h | 3 +- gcc/testsuite/ChangeLog | 34 ++ gcc/testsuite/g++.dg/ext/90532.C | 27 ++ gcc/testsuite/g++.dg/pch/operator-1.C | 2 + gcc/testsuite/g++.dg/pch/operator-1.Hs | 9 + gcc/testsuite/gcc.c-torture/compile/pr90263.c | 10 + gcc/testsuite/gcc.dg/gimplefe-40.c | 2 +- gcc/testsuite/gcc.dg/gimplefe-41.c | 4 +- gcc/testsuite/gcc.target/aarch64/target_attr_10.c | 2 +- .../gcc.target/arm/attr-neon-builtin-fail.c | 2 +- gcc/testsuite/gcc.target/i386/avx512f-simd-1.c | 35 ++ gcc/testsuite/lib/target-supports.exp | 11 + gcc/tree-ssa-alias.c | 185 +++++++---- gcc/tree-vect-loop.c | 58 +++- gcc/tree-vect-slp.c | 2 +- libcpp/ChangeLog | 6 + libcpp/lex.c | 6 +- libgfortran/ChangeLog | 9 + libgfortran/config.h.in | 6 + libgfortran/configure | 10 +- libgfortran/configure.ac | 2 +- libgfortran/intrinsics/execute_command_line.c | 25 ++ libstdc++-v3/ChangeLog | 23 ++ libstdc++-v3/include/ext/new_allocator.h | 14 +- libstdc++-v3/include/std/type_traits | 52 +-- .../testsuite/20_util/is_constructible/value.cc | 7 + .../20_util/is_default_constructible/value.cc | 10 + .../20_util/is_trivially_constructible/value.cc | 2 + .../is_trivially_default_constructible/value.cc | 9 + .../memory_resource/new_delete_resource.cc | 4 +- 70 files changed, 1327 insertions(+), 682 deletions(-) create mode 100644 gcc/testsuite/g++.dg/ext/90532.C create mode 100644 gcc/testsuite/g++.dg/pch/operator-1.C create mode 100644 gcc/testsuite/g++.dg/pch/operator-1.Hs create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr90263.c create mode 100644 gcc/testsuite/gcc.target/i386/avx512f-simd-1.c