This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/c++-coroutines in repository gcc.
from 5a915d6690a Merge master r10-6332. adds 11ffae58473 c++: Add new test [PR88092] adds 165255c7a56 GCN – call assembler with -mattr=-code-object-v3 (PR93409) adds 245e40af4fa c++: Fix attributes with lambda and trailing return type. adds 59da7f96ffc testsuite: Fix up tree-ssa/pr92706-1.c on 32-bit targets. adds 8be8e32fafa Daily bump. adds e3b6c052b6a c++: Drop alignas restriction for stack variables. adds 68f3759eff5 runtime: update netpoll_hurd.go for go1.14beta1 changes adds 66af5a226ac runtime, syscall: add a couple of hurd build tags adds 3b35b3d4cc2 Handle CO_AWAIT_EXPR in conversion in co_await_expander. adds 3904cc106e3 Use promise in coroutine frame in actor function. adds e0332517f90 Regenerate configure for 54b3d52 adds 2595f25cdaf fortran: Fix up ISO_Fortran_binding_15.f90 failures [PR92123] adds b285bebe6ad i386: Optimize popcnt followed by zero/sign extension [PR91824] adds d37c81f476c i386: Optimize {,v}{,p}movmsk{b,ps,pd} followed by sign ext [...] adds b0e9b18ed43 Add testcase of PR c++/90338, already fixed in trunk. adds 5ab5d81b364 Skip plugin-{gcn,hsa} for (-m)x32 (PR bootstrap/93409) adds efd26bbc81e arm: Fix uaddvdi4 expander [PR93494] adds 64464e5f369 Fix ICE in pa_elf_select_rtx_section. adds d177c49cd31 analyzer: avoid comparisons between uncomparable types (PR 93450) adds bba18325a10 dump CTORs properly wrapped with _Literal with -gimple adds 97b40c39208 PR middle-end/92323 - bogus -Warray-bounds after unrolling [...] adds e0678350ea4 Fix "regression" reported by c6x testing. adds 59e6d62be2c Add LTGT operator support for amdgcn adds 004ac7b7803 Remove check for maximum symbol name length. adds 4dd468a042e c++: Fix -Wtype-limits in templates. new b495a1a8327 Merge master r10-6357.
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: gcc/ChangeLog | 50 ++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 15 +++++ gcc/analyzer/program-state.cc | 23 +++++-- gcc/analyzer/program-state.h | 4 +- gcc/analyzer/region-model.cc | 16 +++-- gcc/c-family/ChangeLog | 5 ++ gcc/c-family/c-attribs.c | 62 +---------------- gcc/config.in | 6 ++ gcc/config/arm/arm.md | 2 +- gcc/config/gcn/gcn-hsa.h | 2 +- gcc/config/gcn/gcn.c | 3 + gcc/config/gcn/predicates.md | 2 +- gcc/config/i386/i386.md | 54 +++++++++++++++ gcc/config/i386/sse.md | 55 +++++++++++++--- gcc/config/pa/pa.c | 2 +- gcc/configure | 17 +++++ gcc/cp/ChangeLog | 27 ++++++++ gcc/cp/coroutines.cc | 77 ++++++++++++---------- gcc/cp/parser.c | 17 ++++- gcc/cp/pt.c | 12 ++-- gcc/fortran/ChangeLog | 19 ++++++ gcc/fortran/expr.c | 4 +- gcc/fortran/iresolve.c | 5 +- gcc/fortran/symbol.c | 16 ----- gcc/fortran/trans-decl.c | 14 +++- gcc/go/gofrontend/MERGE | 2 +- gcc/testsuite/ChangeLog | 49 +++++++++++++- .../g++.dg/coroutines/co-await-syntax-09-convert.C | 23 +++++++ gcc/testsuite/g++.dg/cpp0x/alignas17.C | 14 ++++ gcc/testsuite/g++.dg/cpp2a/nontype-class31.C | 19 ++++++ gcc/testsuite/g++.dg/ext/attr-trailing1.C | 14 ++++ gcc/testsuite/g++.dg/pr90338.C | 14 ++++ gcc/testsuite/g++.dg/warn/Wtype-limits3.C | 13 ++++ gcc/testsuite/gcc.c-torture/execute/pr93494.c | 13 ++++ gcc/testsuite/gcc.dg/Warray-bounds-57.c | 53 +++++++++++++++ gcc/testsuite/gcc.dg/analyzer/torture/pr93450.c | 25 +++++++ gcc/testsuite/gcc.dg/tree-ssa/pr92706-1.c | 2 +- gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-26.c | 11 +++- gcc/testsuite/gcc.target/i386/pr91824-1.c | 54 +++++++++++++++ gcc/testsuite/gcc.target/i386/pr91824-2.c | 73 ++++++++++++++++++++ gcc/tree-pretty-print.c | 12 ++++ libgo/go/runtime/nbpipe_pipe2.go | 2 +- libgo/go/runtime/netpoll_hurd.go | 77 ++++++++++++---------- libgo/go/syscall/sockcmsg_unix_other.go | 2 +- libgomp/ChangeLog | 7 ++ libgomp/configure | 6 +- libgomp/plugin/configfrag.ac | 4 +- 48 files changed, 808 insertions(+), 192 deletions(-) create mode 100644 gcc/testsuite/g++.dg/coroutines/co-await-syntax-09-convert.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/alignas17.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nontype-class31.C create mode 100644 gcc/testsuite/g++.dg/ext/attr-trailing1.C create mode 100644 gcc/testsuite/g++.dg/pr90338.C create mode 100644 gcc/testsuite/g++.dg/warn/Wtype-limits3.C create mode 100644 gcc/testsuite/gcc.c-torture/execute/pr93494.c create mode 100644 gcc/testsuite/gcc.dg/Warray-bounds-57.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/torture/pr93450.c create mode 100644 gcc/testsuite/gcc.target/i386/pr91824-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr91824-2.c