This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-aarch64-bootstrap_ubsan in repository toolchain/ci/gcc.
from 6187df779ec /cp 2019-11-02 Paolo Carlini paolo.carlini@oracle.com adds 1240adefd3c Daily bump. adds 13452d9bd78 libgcc/ PR libgcc/78804 * fp-bit.h: Remove FLOAT_BIT_ORDE [...] adds 4e37e80f544 * config.in: Regenerate. * configure: Regenerate. * con [...] adds cc8599c5e2b * config.in: Regenerate. * configure: Regenerate. * conf [...] adds 85e320f3412 * ipa-fnsummary.c (ipa_call_context): New constructor. (e [...] adds 6b75b6cb786 * ipa-fnsummary.c (inline_read_section): Set vector size [...] adds 5d739a89b13 * ipa-fnsummary.c (ipa_call_context::duplicate_from): New [...] adds 78c0a4abd10 PR c++/88565 - enhance -Warray-bounds for C++ trailing clas [...] adds e721f49cce9 Improve effectivity of ipa_polymorphi_context cache. adds 90a7f84a541 2019-11-03 Thomas Koenig tkoenig@gcc.gnu.org adds a31874efbcb Daily bump. new 65a00d052c6 2019-11-04 Thomas Koenig tkoenig@gcc.gnu.org new 5b189beccdf Come up with ggc_delete. new e8ce63b1e31 Fix hash_operand for fields of a CONSTRUCTOR. new 9747aa88843 libgomp/testsuite - use unique numbers with Fortran's 'stop' new e55fdf0aaa0 2019-11-04 Richard Biener rguenther@suse.de new 2f8e6eda4cf MSP430: Add new methods of finding external MCU data file new 04f59c00115 Regenerate gcc/configure new 42c28c484ce MSP430: Add -mtiny-printf option
The 8 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/ChangeLog | 154 +++++++ gcc/DATESTAMP | 2 +- gcc/config.in | 20 + gcc/config/msp430/driver-msp430.c | 13 + gcc/config/msp430/msp430-devices.c | 133 +++++- gcc/config/msp430/msp430-devices.h | 2 + gcc/config/msp430/msp430.c | 29 ++ gcc/config/msp430/msp430.h | 13 +- gcc/config/msp430/msp430.opt | 4 + gcc/configure | 82 +++- gcc/configure.ac | 26 +- gcc/doc/invoke.texi | 44 +- gcc/fold-const.c | 3 + gcc/fortran/ChangeLog | 6 + gcc/fortran/trans-decl.c | 21 +- gcc/ggc-common.c | 15 + gcc/ggc-page.c | 2 +- gcc/ggc.h | 13 + gcc/ipa-fnsummary.c | 410 ++++++++++++++---- gcc/ipa-fnsummary.h | 66 ++- gcc/ipa-inline-analysis.c | 137 +++++- gcc/ipa-inline.c | 5 +- gcc/ipa-inline.h | 2 + gcc/ipa-predicate.c | 10 +- gcc/ipa-predicate.h | 13 +- gcc/ipa-prop.c | 65 ++- gcc/ipa-prop.h | 85 +++- gcc/ipa-sra.c | 3 +- gcc/lto/ChangeLog | 5 + gcc/lto/lto-common.c | 12 +- gcc/lto/lto.c | 2 + gcc/passes.c | 10 + gcc/testsuite/ChangeLog | 31 ++ gcc/testsuite/g++.dg/warn/Warray-bounds-9.C | 81 ++++ gcc/testsuite/gcc.dg/pr92301.c | 35 ++ .../gcc.target/msp430/devices/csv-using-env-var.c | 10 + .../msp430/devices/csv-using-installed.c | 9 + .../gcc.target/msp430/devices/csv-using-option.c | 9 + .../gcc.target/msp430/devices/devices-main.c | 4 + .../gcc.target/msp430/devices/msp430-devices.h | 3 + gcc/testsuite/gcc.target/msp430/msp430.exp | 94 +++- gcc/testsuite/gcc.target/msp430/tiny-printf.c | 3 + gcc/tree-vect-stmts.c | 16 + libgcc/ChangeLog | 8 + libgcc/config/arc/t-arc | 2 - libgcc/fp-bit.c | 20 +- libgcc/fp-bit.h | 14 - libgomp/ChangeLog | 11 + libgomp/testsuite/libgomp.fortran/allocatable2.f90 | 8 +- .../libgomp.fortran/use_device_addr-1.f90 | 482 ++++++++++----------- .../libgomp.fortran/use_device_addr-2.f90 | 482 ++++++++++----------- .../testsuite/libgomp.fortran/use_device_ptr-1.f90 | 166 +++---- libgomp/testsuite/libgomp.oacc-fortran/lib-15.f90 | 2 +- libgomp/testsuite/libgomp.oacc-fortran/pset-1.f90 | 26 +- 54 files changed, 2152 insertions(+), 771 deletions(-) create mode 100644 gcc/testsuite/g++.dg/warn/Warray-bounds-9.C create mode 100644 gcc/testsuite/gcc.dg/pr92301.c create mode 100644 gcc/testsuite/gcc.target/msp430/devices/csv-using-env-var.c create mode 100644 gcc/testsuite/gcc.target/msp430/devices/csv-using-installed.c create mode 100644 gcc/testsuite/gcc.target/msp430/devices/csv-using-option.c create mode 100644 gcc/testsuite/gcc.target/msp430/devices/msp430-devices.h create mode 100644 gcc/testsuite/gcc.target/msp430/tiny-printf.c