This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-next-allyesconfig in repository toolchain/ci/gcc.
from 0f61cb499b9 2019-05-08 François Dumont fdumont@gcc.gnu.org adds 647692b845f [arm][PR88167] Fix __builtin_return_address returns invalid [...] adds 91b30299919 PR c++/59813 PR tree-optimization/89060 * tree-ssa-live. [...] adds 66b1ea95171 compiler: remove trailing spaces adds c40a8e3a4cd [C++ PATCH] Kill DECL_SAVED_FUNCTION_DATA adds ef34d4874d4 runtime: use builtin memmove directly adds 7fdb087678c compiler: generate memmove for non-pointer slice copy adds 6d658980336 2019-05-08 Thomas Koenig tkoenig@gcc.gnu.org adds 56d6b15c11a libgo: add Debugging section to README adds ae77af58cfb compiler: avoid copy for string([]byte) conversion used [...] adds a4b937c4cfc [RS6000] PR89271, gcc.target/powerpc/vsx-simode2.c adds 046ae677a46 Daily bump. adds d084c5ba104 2019-05-09 François Dumont fdumont@gcc.gnu.org adds 679a49952fe [PR89221] Continue to default to '--disable-frame-pointer' [...] adds 3f81dbf1e29 Clean up MPX-related stuff: CIF_CHKP adds 392fe76ad32 2019-05-09 Richard Biener rguenther@suse.de adds 456e9a34614 /cp 2019-05-09 Paolo Carlini paolo.carlini@oracle.com adds b10d8303590 2019-05-09 Paolo Carlini paolo.carlini@oracle.com adds 6b33947d4a0 Support profile (BB counts and edge probabilities) in GIMPLE FE. adds 4fba5dda7c8 Support {MIN,MAX}_EXPR in GIMPLE FE.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 103 +++++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 29 +++ gcc/c/c-parser.c | 3 +- gcc/c/c-tree.h | 2 + gcc/c/gimple-parser.c | 221 +++++++++++++++++--- gcc/c/gimple-parser.h | 3 +- gcc/cif-code.def | 4 - gcc/config/arm/arm.c | 84 ++++++-- gcc/config/rs6000/rs6000.c | 127 ++++++++++-- gcc/config/rs6000/rs6000.h | 4 + gcc/config/rs6000/rs6000.md | 26 +-- gcc/config/rs6000/vsx.md | 2 +- gcc/configure | 4 +- gcc/configure.ac | 4 +- gcc/cp/ChangeLog | 33 +++ gcc/cp/cp-tree.h | 17 +- gcc/cp/decl.c | 84 ++------ gcc/cp/mangle.c | 3 +- gcc/cp/method.c | 4 +- gcc/cp/parser.c | 2 +- gcc/cp/pt.c | 5 +- gcc/cp/typeck.c | 16 +- gcc/fortran/ChangeLog | 18 ++ gcc/fortran/dump-parse-tree.c | 108 ++++++++-- gcc/fortran/gfortran.h | 1 + gcc/fortran/invoke.texi | 30 ++- gcc/fortran/lang.opt | 4 + gcc/fortran/parse.c | 15 +- gcc/gimple-pretty-print.c | 28 ++- gcc/go/ChangeLog | 4 + gcc/go/go-gcc.cc | 9 + gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/backend.h | 6 +- gcc/go/gofrontend/expressions.cc | 310 ++++++++++++++++++++++------ gcc/go/gofrontend/expressions.h | 25 ++- gcc/go/gofrontend/parse.cc | 4 +- gcc/go/gofrontend/runtime.def | 4 + gcc/go/gofrontend/string-dump.h | 2 +- gcc/params.def | 6 + gcc/predict.c | 4 +- gcc/profile-count.c | 88 ++++---- gcc/profile-count.h | 22 +- gcc/testsuite/ChangeLog | 39 ++++ gcc/testsuite/g++.dg/diagnostic/trailing1.C | 5 - gcc/testsuite/gcc.dg/gimplefe-37.c | 27 +++ gcc/testsuite/gcc.dg/gimplefe-38.c | 27 +++ gcc/testsuite/gcc.dg/gimplefe-39.c | 21 ++ gcc/testsuite/gcc.dg/torture/pr90395.c | 12 ++ gcc/testsuite/gcc.dg/tree-ssa/pr89060.c | 53 +++++ gcc/testsuite/gcc.target/arm/pr88167-1.c | 15 ++ gcc/testsuite/gcc.target/arm/pr88167-2.c | 18 ++ gcc/testsuite/go.dg/cmpstring.go | 13 ++ gcc/tree-cfg.c | 26 ++- gcc/tree-inline.c | 55 ++++- gcc/tree-inline.h | 4 + gcc/tree-ssa-forwprop.c | 1 + gcc/tree-ssa-live.c | 143 +++++++++++++ gcc/tree-ssa-live.h | 5 + gcc/tree-tailcall.c | 57 ++++- libgo/Makefile.am | 1 - libgo/Makefile.in | 23 +-- libgo/README | 25 +++ libgo/go/runtime/stubs.go | 1 + libgo/runtime/go-memmove.c | 16 -- libstdc++-v3/ChangeLog | 19 ++ libstdc++-v3/include/bits/stl_deque.h | 247 ++++++++++------------ 67 files changed, 1820 insertions(+), 505 deletions(-) delete mode 100644 gcc/testsuite/g++.dg/diagnostic/trailing1.C create mode 100644 gcc/testsuite/gcc.dg/gimplefe-37.c create mode 100644 gcc/testsuite/gcc.dg/gimplefe-38.c create mode 100644 gcc/testsuite/gcc.dg/gimplefe-39.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr90395.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr89060.c create mode 100644 gcc/testsuite/gcc.target/arm/pr88167-1.c create mode 100644 gcc/testsuite/gcc.target/arm/pr88167-2.c create mode 100644 gcc/testsuite/go.dg/cmpstring.go delete mode 100644 libgo/runtime/go-memmove.c