Daily bump.

This commit is contained in:
GCC Administrator 2022-09-25 00:18:01 +00:00
parent 2b667beba6
commit 28a61ecdc1
6 changed files with 50 additions and 1 deletions

View File

@ -1,3 +1,14 @@
2022-09-24 Jakub Jelinek <jakub@redhat.com>
PR c/107001
* omp-low.cc (lower_omp_taskgroup): Don't add GOMP_RETURN statement
at the end.
* omp-expand.cc (build_omp_regions_1): Clarify GF_OMP_TARGET_KIND_DATA
is not stand-alone directive. For GIMPLE_OMP_TASKGROUP, also don't
update parent.
(omp_make_gimple_edges) <case GIMPLE_OMP_TASKGROUP>: Reset
cur_region back after new_omp_region.
2022-09-23 Vineet Gupta <vineetg@rivosinc.com>
* config/riscv/riscv.h (LOCAL_SYM_P): New.

View File

@ -1 +1 @@
20220924
20220925

View File

@ -1,3 +1,10 @@
2022-09-24 Jakub Jelinek <jakub@redhat.com>
PR c/106981
* c-typeck.cc (c_tree_equal): Only strip NON_LVALUE_EXPRs at the
start. For CONSTANT_CLASS_P or CASE_CONVERT: return false if t1 and
t2 have different types.
2022-09-22 David Malcolm <dmalcolm@redhat.com>
PR c/106830

View File

@ -1,3 +1,13 @@
2022-09-24 Jakub Jelinek <jakub@redhat.com>
PR c/107001
* c-c++-common/gomp/pr107001.c: New test.
2022-09-24 Jakub Jelinek <jakub@redhat.com>
PR c/106981
* c-c++-common/gomp/pr106981.c: New test.
2022-09-23 Joseph Myers <joseph@codesourcery.com>
* gcc.dg/c2x-complit-1.c, gcc.dg/c2x-concat-1.c,

View File

@ -1,3 +1,8 @@
2022-09-24 Jakub Jelinek <jakub@redhat.com>
PR c/106981
* testsuite/libgomp.c-c++-common/pr106981.c: New test.
2022-09-14 Julian Brown <julian@codesourcery.com>
* testsuite/libgomp.oacc-c-c++-common/deep-copy-15.c: New test.

View File

@ -1,3 +1,19 @@
2022-09-24 Jonathan Wakely <jwakely@redhat.com>
* include/bits/alloc_traits.h (allocator_traits::is_always_equal):
Only instantiate is_empty if needed.
* include/bits/ptr_traits.h (__ptr_traits_impl::difference_type)
(__ptr_traits_impl::rebind): Use __detected_or.
* include/experimental/type_traits (is_same_v): Add a partial
specialization instead of instantiating the std::is_same class
template.
(detected_t): Redefine in terms of detected_or_t.
(is_detected, is_detected_v): Redefine in terms of detected_t.
* include/std/type_traits [__cpp_concepts] (__detected_or): Add
new definition using concepts.
(__detector::value_t): Rename to __is_detected.
* testsuite/17_intro/names.cc: Check value_t isn't used.
2022-09-23 Jonathan Wakely <jwakely@redhat.com>
* testsuite/20_util/is_assignable/requirements/access.cc: