This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_gnu_tk1/gnu-master-arm-spec2k6-O3_LTO in repository toolchain/ci/gcc.
from 4574dad43f7 rs6000: Correct return value of check_p9modulo_hw_available. adds 36bc2a8f24f tree-optimization/106533 - loop distribution of inner loop of nest adds 47964e76627 Inline unsupported_range constructor. adds 6ca948264d6 backthreader dump fix adds 1878ab3650d middle-end: Guard value_replacement and store_elim from see [...] adds 29fc5075d7e libstdc++: Implement <experimental/scope> from LFTSv3 adds 58a644cfdee libstdc++: Add feature test macro for <experimental/scope> adds cc01a27db54 middle-end: Allow backend to expand/split double word compa [...] adds e1a9168153d New warning: -Wanalyzer-jump-through-null [PR105947] adds 36e96748ede Daily bump. adds 019a41a7cea Daily bump. adds a46bca36b7b Allow any immediate constant in *cmp<dwi>_doubleword splitt [...] adds 19077677351 c++: Add support for __real__/__imag__ modifications in con [...] adds ef54eb74cab [Committed] Add -mno-stv to new gcc.target/i386/cmpti2.c te [...] adds 37e8e63d3c6 Daily bump. adds 2633c8d8f33 Move testcase gcc.dg/tree-ssa/pr93776.c to gcc.c-torture/co [...]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 49 ++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 8 + gcc/analyzer/analyzer.opt | 4 + gcc/analyzer/engine.cc | 49 ++ gcc/config/i386/i386.md | 16 +- gcc/cp/ChangeLog | 8 + gcc/cp/constexpr.cc | 94 +++- gcc/doc/invoke.texi | 12 + gcc/expmed.cc | 111 ++--- gcc/testsuite/ChangeLog | 30 ++ gcc/testsuite/g++.dg/cpp1y/constexpr-complex1.C | 24 + .../tree-ssa => gcc.c-torture/compile}/pr93776.c | 4 +- gcc/testsuite/gcc.dg/analyzer/function-ptr-5.c | 42 ++ gcc/testsuite/gcc.dg/tree-ssa/ldist-39.c | 16 + gcc/testsuite/gcc.target/i386/cmpti1.c | 8 + gcc/testsuite/gcc.target/i386/cmpti2.c | 12 + gcc/testsuite/gcc.target/i386/cmpti3.c | 13 + gcc/tree-loop-distribution.cc | 2 +- gcc/tree-ssa-phiopt.cc | 4 +- gcc/tree-ssa-threadbackward.cc | 8 +- gcc/value-range.cc | 6 - gcc/value-range.h | 10 +- libstdc++-v3/ChangeLog | 14 + libstdc++-v3/include/Makefile.am | 1 + libstdc++-v3/include/Makefile.in | 1 + libstdc++-v3/include/experimental/scope | 497 +++++++++++++++++++++ .../testsuite/experimental/scopeguard/exit.cc | 300 +++++++++++++ .../testsuite/experimental/scopeguard/uniqueres.cc | 366 +++++++++++++++ 29 files changed, 1621 insertions(+), 90 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/constexpr-complex1.C rename gcc/testsuite/{gcc.dg/tree-ssa => gcc.c-torture/compile}/pr93776.c (76%) create mode 100644 gcc/testsuite/gcc.dg/analyzer/function-ptr-5.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ldist-39.c create mode 100644 gcc/testsuite/gcc.target/i386/cmpti1.c create mode 100644 gcc/testsuite/gcc.target/i386/cmpti2.c create mode 100644 gcc/testsuite/gcc.target/i386/cmpti3.c create mode 100644 libstdc++-v3/include/experimental/scope create mode 100644 libstdc++-v3/testsuite/experimental/scopeguard/exit.cc create mode 100644 libstdc++-v3/testsuite/experimental/scopeguard/uniqueres.cc