This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ce6abe54ff1 Fortran: various fixes for STAT/LSTAT/FSTAT intrinsics [PR82480] new e60c1793efd Simplify switches utilizing subranges. new 9560cd83671 Improve contains_p and intersect with bitmasks. new 99c2075f764 intersect_bitmask - Always update bitmask. new 43e408f675f c++, coroutines: CWG2563 promise lifetime extension [PR115908].
The 4 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/cp/coroutines.cc | 261 ++++++++++++++----- .../g++.dg/coroutines/{ => torture}/pr115908.C | 9 +- .../{pr95615-04.C => pr95615-00-nothing-throws.C} | 2 +- ...95615-02.C => pr95615-01-promise-ctor-throws.C} | 0 ...-03.C => pr95615-02-get-return-object-throws.C} | 0 ...15-01.C => pr95615-03-initial-suspend-throws.C} | 0 ...4.C => pr95615-04-initial-await-ready-throws.C} | 0 ...C => pr95615-05-initial-await-suspend-throws.C} | 0 ....C => pr95615-06-initial-await-resume-throws.C} | 4 +- .../{pr95615-04.C => pr95615-07-body-throws.C} | 4 +- ...pr95615-08-initial-suspend-throws-uhe-throws.C} | 3 + .../torture/pr95615-09-body-throws-uhe-throws.C | 10 + .../g++.dg/coroutines/torture/pr95615.inc | 196 +++++++++----- gcc/testsuite/gcc.dg/pr119039-1.c | 32 +++ gcc/testsuite/gcc.dg/pr119039-2.c | 60 +++++ gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-7.c | 4 +- gcc/value-range.cc | 30 ++- gcc/vr-values.cc | 281 ++++++--------------- 18 files changed, 542 insertions(+), 354 deletions(-) rename gcc/testsuite/g++.dg/coroutines/{ => torture}/pr115908.C (88%) copy gcc/testsuite/g++.dg/coroutines/torture/{pr95615-04.C => pr95615-00-nothing-t [...] rename gcc/testsuite/g++.dg/coroutines/torture/{pr95615-02.C => pr95615-01-promise [...] rename gcc/testsuite/g++.dg/coroutines/torture/{pr95615-03.C => pr95615-02-get-ret [...] copy gcc/testsuite/g++.dg/coroutines/torture/{pr95615-01.C => pr95615-03-initial-s [...] copy gcc/testsuite/g++.dg/coroutines/torture/{pr95615-04.C => pr95615-04-initial-a [...] rename gcc/testsuite/g++.dg/coroutines/torture/{pr95615-05.C => pr95615-05-initial [...] copy gcc/testsuite/g++.dg/coroutines/torture/{pr95615-04.C => pr95615-06-initial-a [...] rename gcc/testsuite/g++.dg/coroutines/torture/{pr95615-04.C => pr95615-07-body-th [...] rename gcc/testsuite/g++.dg/coroutines/torture/{pr95615-01.C => pr95615-08-initial [...] create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/pr95615-09-body-throws- [...] create mode 100644 gcc/testsuite/gcc.dg/pr119039-1.c create mode 100644 gcc/testsuite/gcc.dg/pr119039-2.c