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-lts-defconfig in repository toolchain/ci/gcc.
from 13b9cbfc32f Use value_range_base::num_pairs instead of vrp_val_is* to c [...] adds 80a52f85514 Disentangle range_fold_*ary_expr() into various independent [...] adds e24cd8b5ca6 * ipa-prop.c (ipa_vr::nonzero_p): Add TYPE_UNSIGNED check. adds d790ce54912 [doc] -Wuninitialized doesn't do -Wclobbered's job adds e9eb8d6d16b Make gsi_next_nonvirtual_phi do what one expects adds c8fdd6844e4 Allow COND_EXPR and VEC_COND_EXPR condtions to trap adds 4fc22705675 Introduce can_vcond_compare_p function adds eb9d6d0d03e /cp 2019-10-07 Paolo Carlini paolo.carlini@oracle.com adds 672877041c8 * gcc.target/i386/pr71801.c (uuidcache_init): Fix up size [...] adds e172da226c5 * gcc.target/i386/pr71801.c (uuidcache_init): Fix up size [...] adds b4578a09987 MSP430: Don't generate 430X insns when handling data in the [...] adds b3305f3d277 * config/i386/i386-expand.c (ix86_expand_floorceildf_32, [...] adds 41e73d742fd 2019-10-07 Jozef Lawrynowicz jozef.l@mittosystems.com adds a7bc2144797 2019-10-07 Jozef Lawrynowicz jozef.l@mittosystems.com adds 85d1bbd4e45 [Darwin, machopic 0/n] Initial tidy of Mach-O symbol handling. adds 7a86dd5425d [Darwin, machopic 1/n] Consider visibility in indirections. adds 5e136518c67 2019-10-07 Jozef Lawrynowicz jozef.l@mittosystems.com adds 51c4c2fedb2 Revert: 2019-10-07 Jozef Lawrynowicz jozef.l@mittosystems.com adds c67d5b3141c 2019-10-07 Prathamesh Kulkarni <prathamesh.kulkarni@linar [...] adds 63f0cc9ca78 Daily bump. adds 36112481bc6 Make C2X imply -fno-fp-int-builtin-inexact. new a810511fbd8 [AArch64] Limit simd-abi-9.c function body test to LP64 new 4958da0be3f Remove '>>>' merge marker from changelog
The 2 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 | 229 +++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-opts.c | 6 + gcc/config.in | 6 + gcc/config/darwin.c | 54 +- gcc/config/darwin.h | 31 +- gcc/config/i386/darwin.h | 6 +- gcc/config/i386/i386-expand.c | 220 +-- gcc/config/i386/i386-protos.h | 6 +- gcc/config/msp430/constraints.md | 10 +- gcc/config/msp430/driver-msp430.c | 13 + gcc/config/msp430/msp430-protos.h | 2 + gcc/config/msp430/msp430.c | 243 ++- gcc/config/msp430/msp430.h | 13 +- gcc/config/msp430/msp430.md | 262 ++-- gcc/config/msp430/msp430.opt | 12 +- gcc/config/msp430/predicates.md | 10 +- gcc/config/msp430/t-msp430 | 11 +- gcc/config/rs6000/darwin.h | 3 + gcc/configure | 74 + gcc/configure.ac | 14 + gcc/cp/ChangeLog | 10 + gcc/cp/call.c | 3 +- gcc/cp/decl.c | 4 +- gcc/cp/decl2.c | 3 +- gcc/cp/parser.c | 28 +- gcc/cp/pt.c | 6 +- gcc/doc/extend.texi | 25 +- gcc/doc/invoke.texi | 29 +- gcc/fortran/ChangeLog | 1 - gcc/gimple-expr.c | 25 +- gcc/gimple-expr.h | 1 + gcc/gimple-iterator.h | 31 +- gcc/gimple.c | 14 +- gcc/gimplify.c | 5 +- gcc/ipa-icf.c | 11 +- gcc/ipa-prop.c | 17 +- gcc/ipa-prop.h | 1 + gcc/optabs-tree.c | 39 +- gcc/optabs.c | 19 + gcc/optabs.h | 6 + gcc/testsuite/ChangeLog | 33 + .../g++.dg/diagnostic/not-a-function-template-1.C | 9 + gcc/testsuite/g++.dg/template/crash107.C | 4 +- gcc/testsuite/g++.dg/template/dependent-expr1.C | 8 +- gcc/testsuite/g++.dg/template/error17.C | 2 +- .../gcc.dg/torture/builtin-fp-int-inexact-c2x.c | 7 + .../gcc.target/aarch64/torture/simd-abi-9.c | 2 +- gcc/testsuite/gcc.target/i386/pr71801.c | 2 +- gcc/testsuite/gcc.target/msp430/430x-insns.c | 1646 ++++++++++++++++++++ .../gcc.target/msp430/data-attributes-2.c | 4 +- gcc/testsuite/gcc.target/msp430/msp430.exp | 8 + .../gcc.target/msp430/object-attributes-430.c | 14 + .../gcc.target/msp430/object-attributes-default.c | 16 + .../msp430/object-attributes-mlarge-any-region.c | 14 + .../gcc.target/msp430/object-attributes-mlarge.c | 15 + gcc/tree-eh.c | 8 + gcc/tree-if-conv.c | 24 +- gcc/tree-ssa-dse.c | 22 +- gcc/tree-ssa-dse.h | 36 + gcc/tree-ssa-forwprop.c | 7 +- gcc/tree-vrp.c | 264 ++-- gcc/tree-vrp.h | 1 + 64 files changed, 3126 insertions(+), 530 deletions(-) create mode 100644 gcc/testsuite/g++.dg/diagnostic/not-a-function-template-1.C create mode 100644 gcc/testsuite/gcc.dg/torture/builtin-fp-int-inexact-c2x.c create mode 100644 gcc/testsuite/gcc.target/msp430/430x-insns.c create mode 100644 gcc/testsuite/gcc.target/msp430/object-attributes-430.c create mode 100644 gcc/testsuite/gcc.target/msp430/object-attributes-default.c create mode 100644 gcc/testsuite/gcc.target/msp430/object-attributes-mlarge-any-region.c create mode 100644 gcc/testsuite/gcc.target/msp430/object-attributes-mlarge.c create mode 100644 gcc/tree-ssa-dse.h