This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch melt-branch in repository gcc.
from ffbf47a 2016-04-15 Basile Starynkevitch basile@starynkevitch.net [...] new df16852 2016-04-15 Basile Starynkevitch basile@starynkevitch.net [...]
The 1 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: ChangeLog.MELT | 5 + gcc/ChangeLog | 294 +++++++++++ gcc/DATESTAMP | 2 +- gcc/alloc-pool.h | 15 +- gcc/common/config/arc/arc-common.c | 34 +- gcc/config.gcc | 4 +- gcc/config/aarch64/atomics.md | 28 -- gcc/config/aarch64/iterators.md | 33 ++ gcc/config/arc/arc-opts.h | 4 +- gcc/config/arc/arc-protos.h | 1 + gcc/config/arc/arc.c | 350 +++++++++++-- gcc/config/arc/arc.h | 46 +- gcc/config/arc/arc.md | 552 +++++++++++++++++---- gcc/config/arc/arc.opt | 33 ++ gcc/config/arc/arcEM.md | 93 ++++ gcc/config/arc/arcHS.md | 76 +++ gcc/config/arc/constraints.md | 24 + gcc/config/arc/predicates.md | 6 +- gcc/config/arc/t-arc-newlib | 17 +- gcc/config/arm/arm-builtins.c | 52 +- gcc/config/arm/arm.c | 55 +- gcc/config/arm/arm.h | 6 + gcc/config/arm/neon.md | 130 ++--- gcc/config/ft32/ft32.c | 2 +- gcc/config/i386/i386-protos.h | 1 + gcc/config/i386/i386.c | 31 +- gcc/config/i386/i386.md | 4 +- gcc/config/i386/sse.md | 136 +++++ gcc/config/mips/mips.c | 117 +++++ gcc/config/moxie/moxie.c | 4 +- gcc/config/nvptx/nvptx.c | 69 +++ gcc/config/nvptx/nvptx.opt | 4 + gcc/config/rs6000/aix.h | 18 +- gcc/config/rs6000/rs6000.c | 23 +- gcc/configure | 4 +- gcc/configure.ac | 4 +- gcc/doc/invoke.texi | 80 ++- gcc/fold-const.c | 58 +-- gcc/fortran/ChangeLog | 5 + gcc/fortran/openmp.c | 2 +- gcc/gimple-ssa-strength-reduction.c | 3 +- gcc/go/gofrontend/MERGE | 2 +- gcc/optabs.c | 3 +- gcc/passes.c | 19 +- gcc/regrename.c | 7 +- gcc/testsuite/ChangeLog | 22 + gcc/testsuite/g++.dg/ext/mv16.C | 18 + gcc/testsuite/gcc.dg/tree-ssa/pr68234.c | 24 + gcc/testsuite/gcc.target/i386/mask-pack.c | 100 ++++ gcc/testsuite/gcc.target/i386/mask-unpack.c | 100 ++++ gcc/testsuite/gcc.target/mips/split-ds-sequence.c | 19 + gcc/tree-sra.c | 4 +- gcc/tree-vect-loop.c | 31 +- gcc/tree-vect-patterns.c | 275 +++++++++- gcc/tree-vect-stmts.c | 42 +- gcc/tree-vectorizer.h | 2 +- gcc/tree-vrp.c | 39 +- gcc/var-tracking.c | 2 +- libgcc/ChangeLog | 16 + libgcc/config/arc/dp-hack.h | 2 +- libgcc/config/arc/gmon/dcache_linesz.S | 2 + libgcc/config/arc/gmon/profil.S | 11 + libgcc/config/arc/ieee-754/arc-ieee-754.h | 7 + libgcc/config/arc/ieee-754/divdf3.S | 37 +- libgcc/config/arc/ieee-754/divsf3-stdmul.S | 14 +- libgcc/config/arc/ieee-754/muldf3.S | 8 +- libgcc/config/arc/ieee-754/mulsf3.S | 6 +- libgcc/config/arc/lib1funcs.S | 15 +- libgcc/config/arc/t-arc700-uClibc | 4 +- libgo/configure | 40 ++ libgo/configure.ac | 3 + libgo/go/cmd/go/build.go | 12 +- libgo/mksysinfo.sh | 20 + libgomp/ChangeLog | 6 +- .../libgomp.oacc-c-c++-common/firstprivate-1.c | 41 -- libstdc++-v3/ChangeLog | 19 + libstdc++-v3/doc/html/manual/status.html | 8 +- libstdc++-v3/doc/xml/manual/status_cxx2017.xml | 10 +- libstdc++-v3/include/bits/stl_multiset.h | 10 +- libstdc++-v3/include/bits/stl_set.h | 10 +- libstdc++-v3/libsupc++/exception_ptr.h | 2 + .../18_support/exception_ptr/rethrow_exception.cc | 14 +- .../testsuite/23_containers/map/operations/2.cc | 5 + .../23_containers/multimap/operations/2.cc | 5 + .../23_containers/multiset/operations/2.cc | 5 + .../testsuite/23_containers/set/operations/2.cc | 5 + 86 files changed, 2946 insertions(+), 525 deletions(-) create mode 100644 gcc/config/arc/arcEM.md create mode 100644 gcc/config/arc/arcHS.md create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr68234.c create mode 100644 gcc/testsuite/gcc.target/i386/mask-pack.c create mode 100644 gcc/testsuite/gcc.target/i386/mask-unpack.c create mode 100644 gcc/testsuite/gcc.target/mips/split-ds-sequence.c delete mode 100644 libgomp/testsuite/libgomp.oacc-c-c++-common/firstprivate-1.c