This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_lto in repository toolchain/ci/gcc.
from 6ef9ad93094 path relation oracle: Remove SSA's being killed from the eq [...] adds 2322c8b1b44 Daily bump. adds 84bcefd5555 Enable vectorization for _Float16 floor/ceil/trunc/nearbyin [...] adds 146b83e14a0 rs6000: Optimize __builtin_shuffle when it's used to zero t [...] adds eca767aa51d c++: Implement DR2351 - void{} [PR102820] adds 4cd2a27a1c9 Force -fexcess-precision=standard for fp-uint64-convert-double-1.c adds f1ba6a819de gimple-fold: Preserve location in gimple_fold_builtin_memset adds ed3de62ac94 middle-end: Update the Arm complex numbers auto-vec detecti [...] adds 4045d5fa42f middle-end: Add target independent tests for Arm complex nu [...] adds b8ef019ab93 handle retslot in modref
No new revisions were added by this update.
Summary of changes: ChangeLog | 7 + gcc/ChangeLog | 153 +++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 5 + gcc/config/i386/i386-builtin-types.def | 7 + gcc/config/i386/i386-builtin.def | 11 + gcc/config/i386/i386-builtins.c | 42 +++ gcc/config/i386/i386-expand.c | 3 + gcc/config/i386/sse.md | 12 +- gcc/config/rs6000/rs6000.c | 39 ++- gcc/cp/ChangeLog | 24 ++ gcc/cp/semantics.c | 33 +- gcc/gimple-fold.c | 1 + gcc/gimple.c | 41 ++- gcc/gimple.h | 1 + gcc/ipa-modref.c | 145 +++++--- gcc/ipa-modref.h | 1 + gcc/testsuite/ChangeLog | 67 ++++ gcc/testsuite/g++.dg/cpp0x/dr2351.C | 51 +++ gcc/testsuite/gcc.dg/Wstringop-overflow-62.c | 4 +- .../gcc.dg/torture/fp-uint64-convert-double-1.c | 2 +- .../vect/complex/bb-slp-complex-add-pattern-byte.c | 12 - .../vect/complex/bb-slp-complex-add-pattern-int.c | 8 +- .../vect/complex/bb-slp-complex-add-pattern-long.c | 7 +- .../complex/bb-slp-complex-add-pattern-short.c | 8 +- .../bb-slp-complex-add-pattern-unsigned-byte.c | 12 - .../bb-slp-complex-add-pattern-unsigned-int.c | 8 +- .../bb-slp-complex-add-pattern-unsigned-long.c | 8 +- .../bb-slp-complex-add-pattern-unsigned-short.c | 8 +- .../complex/fast-math-bb-slp-complex-add-double.c | 8 +- .../complex/fast-math-bb-slp-complex-add-float.c | 8 +- .../fast-math-bb-slp-complex-add-half-float.c | 1 + .../fast-math-bb-slp-complex-add-pattern-double.c | 8 +- .../fast-math-bb-slp-complex-add-pattern-float.c | 8 +- ...st-math-bb-slp-complex-add-pattern-half-float.c | 8 +- .../complex/fast-math-bb-slp-complex-mla-double.c | 2 + .../complex/fast-math-bb-slp-complex-mla-float.c | 5 +- .../fast-math-bb-slp-complex-mla-half-float.c | 3 + .../complex/fast-math-bb-slp-complex-mls-double.c | 6 +- .../complex/fast-math-bb-slp-complex-mls-float.c | 6 +- .../fast-math-bb-slp-complex-mls-half-float.c | 5 +- .../complex/fast-math-bb-slp-complex-mul-double.c | 2 + .../complex/fast-math-bb-slp-complex-mul-float.c | 4 + .../fast-math-bb-slp-complex-mul-half-float.c | 3 + .../vect/complex/fast-math-complex-add-double.c | 7 +- .../vect/complex/fast-math-complex-add-float.c | 7 +- .../complex/fast-math-complex-add-half-float.c | 5 +- .../complex/fast-math-complex-add-pattern-double.c | 8 +- .../complex/fast-math-complex-add-pattern-float.c | 8 +- .../fast-math-complex-add-pattern-half-float.c | 9 +- .../vect/complex/fast-math-complex-mla-double.c | 2 + .../vect/complex/fast-math-complex-mla-float.c | 2 + .../complex/fast-math-complex-mla-half-float.c | 3 +- .../vect/complex/fast-math-complex-mls-double.c | 7 +- .../vect/complex/fast-math-complex-mls-float.c | 7 +- .../complex/fast-math-complex-mls-half-float.c | 6 +- .../vect/complex/fast-math-complex-mul-double.c | 3 +- .../vect/complex/fast-math-complex-mul-float.c | 3 +- .../complex/fast-math-complex-mul-half-float.c | 3 +- .../vect/complex/vect-complex-add-pattern-byte.c | 7 +- .../vect/complex/vect-complex-add-pattern-int.c | 7 +- .../vect/complex/vect-complex-add-pattern-long.c | 7 +- .../vect/complex/vect-complex-add-pattern-short.c | 7 +- .../vect-complex-add-pattern-unsigned-byte.c | 7 +- .../vect-complex-add-pattern-unsigned-int.c | 7 +- .../vect-complex-add-pattern-unsigned-long.c | 7 +- .../vect-complex-add-pattern-unsigned-short.c | 7 +- .../gcc.target/i386/pr102464-vrndscaleph.c | 115 +++++++ gcc/testsuite/gcc.target/powerpc/pr102868.c | 53 +++ gcc/tree-ssa-structalias.c | 29 +- gcc/tree-vect-slp-patterns.c | 367 +++++++-------------- 71 files changed, 1081 insertions(+), 418 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/dr2351.C delete mode 100644 gcc/testsuite/gcc.dg/vect/complex/bb-slp-complex-add-pattern-byte.c delete mode 100644 gcc/testsuite/gcc.dg/vect/complex/bb-slp-complex-add-pattern-un [...] create mode 100644 gcc/testsuite/gcc.target/i386/pr102464-vrndscaleph.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr102868.c