This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-arm in repository toolchain/ci/gcc.
from cab411a2b4b Set nonzero bits from bitwise and operator in range-ops. adds 6e9d5dfc291 Fortran: error recovery simplifying PACK with invalid argum [...] adds 5ae74944af1 libstdc++: Check for EOF if extraction avoids buffer overfl [...] adds 43997608a08 Daily bump. adds c479c40f8c8 tree-optimization/106249 - unroll-and-jam and LC SSA upate adds e9cad1e5829 aarch64: Don't return invalid GIMPLE assign statements adds 1d73dfb5e6f [Ada] Refine type for checking number of pragma arguments adds 730814edc8b [Ada] Fix CodePeer warnings in GNAT sources adds 6faa271f09f [Ada] Fix internal error on untagged record type with equal [...] adds 94425248c76 [Ada] Add cross-references between Integer_Type_For and Sma [...] adds 7a03001cd2d [Ada] Fix if expression returning slice adds b872d3fe67b [Ada] Fix automatic proof on System.Arith_32 adds 05e91ac1f89 [Ada] Plug legality loophole for equality operator of untag [...] adds d03a7f8c247 [Ada] Fix crash on frontend inlining of functions with sing [...] adds 4709037646e [Ada] Fix proof of runtime unit System.Arith_64 adds 8e3030ea9ae [Ada] Fix incorrect handling of Ghost aspect adds 4621bae835b [Ada] Clarify hardening command-line options that require e [...] adds a714ca803cb [Ada] Handle bodies-to-inline just like generic templates adds 6beeff028f4 [Ada] Fix for visibility of aspect expressions inside gener [...] adds 9f857be34d9 [Ada] Add support for defaulted Storage_Model_Type aspect a [...] adds d60f61f6a42 [Ada] Fix for bootstrap problem with calling function Syste [...] adds 84d3047b14b [Ada] Extend No_Dependence restriction to code generation ( [...] adds 6071ef0bed2 [Ada] Fix wrong access check with access-to-unconstrained-array adds 2b8c12348da [Ada] Fix internal error on instance of Ada.Task_Attributes at -O adds d927cb527cb [Ada] Fix internal error on comparison with access function [...] adds 589163e18a2 [Ada] Do not generate DW_TAG_typedef for constrained array types adds 45808a572ba [Ada] Generate debug info entry for user-defined access subtype adds 298bbf3c9be [Ada] Use actual types instead of formal types consistently [...] adds 36ed32caf87 [Ada] Adjust name of stack checking function adds 258814a99e7 [Ada] Also deal with private actual types in latest change adds 0888e1fea16 [Ada] Undo questionable renaming in earlier change adds 351659f8dc8 [Ada] Revert recent change in debug info for vector array types adds 1f3f64b9e77 [Ada] Extend No_Dependence restriction to code generation adds 0c5730a64d9 [Ada] Small housekeeping work in gigi adds c7970b146f9 Speed up DOM record_temporary_equivalences adds 554b21edb9e Clear nonzero mask when inverting ranges. adds 1184f677d6e Use nonzero bits in range-ops to determine if < 0 is false. adds f35d65517a5 libgo: don't include <linux/fs.h> when building gen-sysinfo.go
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 45 +++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 328 +++++++++++++++++++++ gcc/ada/aspects.ads | 2 +- .../doc/gnat_rm/security_hardening_features.rst | 17 +- gcc/ada/exp_ch4.adb | 20 +- gcc/ada/exp_ch6.adb | 2 +- gcc/ada/exp_util.adb | 11 +- gcc/ada/exp_util.ads | 10 +- gcc/ada/gcc-interface/decl.cc | 175 +++++++---- gcc/ada/gcc-interface/trans.cc | 86 ++++-- gcc/ada/gcc-interface/utils.cc | 45 ++- gcc/ada/gcc-interface/utils2.cc | 23 +- gcc/ada/gnat_rm.texi | 17 +- gcc/ada/inline.adb | 13 +- gcc/ada/libgnat/a-ztenau.adb | 2 - gcc/ada/libgnat/g-spipat.adb | 128 +------- gcc/ada/libgnat/s-aridou.adb | 96 +++++- gcc/ada/libgnat/s-arit32.adb | 3 +- gcc/ada/par-prag.adb | 4 +- gcc/ada/sem_attr.adb | 4 +- gcc/ada/sem_ch12.adb | 2 +- gcc/ada/sem_ch13.adb | 327 +++++++++++--------- gcc/ada/sem_ch6.adb | 222 ++++++++++---- gcc/ada/sem_prag.adb | 10 + gcc/ada/sem_util.adb | 37 ++- gcc/ada/sem_util.ads | 15 +- gcc/ada/snames.ads-tmpl | 4 + gcc/config/aarch64/aarch64-builtins.cc | 10 + gcc/fortran/ChangeLog | 7 + gcc/fortran/simplify.cc | 12 + gcc/go/gofrontend/MERGE | 2 +- gcc/range-op.cc | 3 + gcc/testsuite/ChangeLog | 33 +++ gcc/testsuite/g++.dg/ipa/pure-const-3.C | 2 +- gcc/testsuite/gcc.dg/pr102983.c | 2 +- gcc/testsuite/gcc.dg/pr106249.c | 16 + .../aarch64/advsimd-intrinsics/ignored_return_1.c | 9 + gcc/testsuite/gfortran.dg/pack_simplify_1.f90 | 15 + gcc/tree-ssa-dom.cc | 67 ++--- gcc/tree-ssa-dom.h | 3 - gcc/tree-ssa-loop-manip.cc | 5 +- gcc/value-range.cc | 8 + include/ChangeLog | 7 + libgo/sysinfo.c | 3 - libgomp/ChangeLog | 10 + libstdc++-v3/ChangeLog | 22 ++ libstdc++-v3/include/std/istream | 31 +- .../extractors_character/char/pr106248.cc | 40 +++ .../extractors_character/wchar_t/pr106248.cc | 40 +++ lto-plugin/ChangeLog | 7 + 51 files changed, 1474 insertions(+), 530 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr106249.c create mode 100644 gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/ignored_return_1.c create mode 100644 gcc/testsuite/gfortran.dg/pack_simplify_1.f90 create mode 100644 libstdc++-v3/testsuite/27_io/basic_istream/extractors_character [...] create mode 100644 libstdc++-v3/testsuite/27_io/basic_istream/extractors_character [...]