]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 7 May 2021 00:18:16 +0000 (00:18 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Fri, 7 May 2021 00:18:16 +0000 (00:18 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/testsuite/ChangeLog
libgomp/ChangeLog
libstdc++-v3/ChangeLog

index 877007450d52247f6171b1122a6d6d4c0c617763..46971cf134403a4ba4eee3da229658595c00d794 100644 (file)
@@ -1,3 +1,34 @@
+2021-05-06  Marius Hillenbrand  <mhillen@linux.ibm.com>
+
+       Backported from master:
+       2021-05-06  Marius Hillenbrand  <mhillen@linux.ibm.com>
+
+       * config/s390/s390-builtins.def (O_M5, O1_M5, ...): Remove unused macros.
+       (s390_vec_permi_s64, s390_vec_permi_b64, s390_vec_permi_u64)
+       (s390_vec_permi_dbl, s390_vpdi): Use the O3_U2 type for the immediate
+       operand.
+       * config/s390/s390.c (s390_const_operand_ok): Remove unused
+       values.
+
+2021-05-06  Roman Zhuykov  <zhroma@ispras.ru>
+
+       Backported from master:
+       2021-04-30  Roman Zhuykov  <zhroma@ispras.ru>
+
+       PR rtl-optimization/100225
+       PR rtl-optimization/84878
+       * modulo-sched.c (sms_schedule): Use note_stores to skip loops
+       where we have an instruction which touches (writes) any hard
+       register from df->regular_block_artificial_uses set.
+       Allow not-single-set instruction only right before basic block
+       tail.
+
+2021-05-06  Ilya Leoshkevich  <iii@linux.ibm.com>
+
+       PR target/100217
+       * config/s390/s390.c (s390_hard_fp_reg_p): New function.
+       (s390_md_asm_adjust): Handle hard registers.
+
 2021-05-05  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR target/100402
index 8e159d5342000a49c70947206c3b058b93837c8e..b5beafed7dfabe0288ca6b133e6fe326b74f0aa3 100644 (file)
@@ -1 +1 @@
-20210506
+20210507
index ddc62a3956a428d84156032044e1608c4e5c278e..fb35a283fa32611ae17912ed004ee62f5035fb0b 100644 (file)
@@ -1,3 +1,28 @@
+2021-05-06  Marius Hillenbrand  <mhillen@linux.ibm.com>
+
+       Backported from master:
+       2021-05-06  Marius Hillenbrand  <mhillen@linux.ibm.com>
+
+       * gcc.target/s390/zvector/imm-range-error-1.c: Fix test for
+       __builtin_s390_vpdi.
+       * gcc.target/s390/zvector/vec-permi.c: New test for builtin
+       vec_permi.
+
+2021-05-06  Roman Zhuykov  <zhroma@ispras.ru>
+
+       Backported from master:
+       2021-04-30  Roman Zhuykov  <zhroma@ispras.ru>
+
+       PR rtl-optimization/100225
+       PR rtl-optimization/84878
+       * gcc.dg/pr100225.c: New test.
+
+2021-05-06  Ilya Leoshkevich  <iii@linux.ibm.com>
+
+       PR target/100217
+       * gcc.target/s390/vector/long-double-asm-in-out-hard-fp-reg.c: New test.
+       * gcc.target/s390/vector/long-double-asm-inout-hard-fp-reg.c: New test.
+
 2021-05-05  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gcc.c-torture/execute/20210505-1.c: New test.
index 7c682e9a07d038243abf47264ef995d07457afa4..6531ccb746482fd2f56c90055191cfcfd461ac5f 100644 (file)
@@ -1,3 +1,10 @@
+2021-05-06  Roman Zhuykov  <zhroma@ispras.ru>
+
+       Backported from master:
+       2021-04-30  Roman Zhuykov  <zhroma@ispras.ru>
+
+       * testsuite/libgomp.oacc-c-c++-common/atomic_capture-3.c: New test.
+
 2021-04-29  Tom de Vries  <tdevries@suse.de>
 
        Backported from master:
index 64f000ff22dd809bceecc1193df4744bffc757f1..66cb27e701d9d6167a2b0e337253170e2e06db38 100644 (file)
@@ -1,3 +1,111 @@
+2021-05-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2021-04-30  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/istream (operator>>(Istream&&, x&)): Simplify, as
+       per LWG 1203.
+       * include/std/ostream (operator<<(Ostream&&, const x&)):
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_character/char/lwg2499_neg.cc:
+       Adjust dg-error pattern.
+       * testsuite/27_io/basic_istream/extractors_character/wchar_t/lwg2499_neg.cc:
+       Likewise.
+       * testsuite/27_io/basic_istream/extractors_other/char/4.cc: Define
+       is_extractable trait to replace std::__is_extractable. Make it
+       work with rvalue streams as well as lvalues, to replace f() and
+       g() helper functions.
+       * testsuite/27_io/basic_istream/extractors_other/wchar_t/4.cc:
+       Likewise.
+       * testsuite/27_io/basic_ostream/inserters_other/char/6.cc:
+       Define is_insertable trait to replace std::__is_insertable. Make
+       it work with rvalue streams as well as lvalues, to replace f()
+       and g() helper functions.
+       * testsuite/27_io/basic_ostream/inserters_other/wchar_t/6.cc:
+       Likewise.
+       * testsuite/27_io/filesystem/path/io/dr2989.cc: Prune additional
+       errors from new constraints.
+       * testsuite/27_io/rvalue_streams-2.cc: Remove PR 80675 checks,
+       which are no longer expected to compile.
+       * testsuite/27_io/rvalue_streams.cc: Adjust existing test.
+       Verify LWG 1203 changes.
+
+2021-05-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2021-05-05  Jonathan Wakely  <jwakely@redhat.com>
+
+       * testsuite/20_util/function_objects/invoke/3.cc: Check feature
+       test macro.
+       * testsuite/20_util/function_objects/invoke/version.cc: New test.
+
+2021-05-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2021-05-04  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/future (promise::set_value): Check for existence
+       of shared state before dereferncing it.
+       (promise::set_exception, promise::set_value_at_thread_exit)
+       (promise::set_exception_at_thread_exit): Likewise.
+       (promise<R&>::set_value, promise<R&>::set_exception)
+       (promise<R&>::set_value_at_thread_exit)
+       (promise<R&>::set_exception_at_thread_exit): Likewise.
+       (promise<void>::set_value, promise<void>::set_exception)
+       (promise<void>::set_value_at_thread_exit)
+       (promise<void>::set_exception_at_thread_exit): Likewise.
+       * testsuite/30_threads/promise/members/at_thread_exit2.cc:
+       Remove unused variable.
+
+2021-05-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2021-05-04  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/basic_string.h (basic_string(const CharT*, const A&)):
+       Do not do arithmetic on null pointer.
+
+2021-05-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2021-05-04  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp
+       (find_key_pointer(key_const_reference, false_type))
+       (find_key_pointer(key_const_reference, true_type)): Do not
+       dereference null pointer.
+
+2021-05-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2021-05-04  Jonathan Wakely  <jwakely@redhat.com>
+
+       * testsuite/20_util/from_chars/3.cc: Use unsigned type to avoid
+       overflow.
+       * testsuite/24_iterators/reverse_iterator/2.cc: Do not add
+       non-zero value to null pointer.
+       * testsuite/25_algorithms/copy_backward/move_iterators/69478.cc:
+       Use past-the-end iterator for result.
+       * testsuite/25_algorithms/move_backward/69478.cc: Likewise.
+       * testsuite/25_algorithms/move_backward/93872.cc: Likewise.
+
+2021-05-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       Backported from master:
+       2021-05-04  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/100384
+       * include/std/variant (__get_t): New alias template yielding the
+       return type of std::get<N> on a variant.
+       (__visit_result_t): New alias template yielding the result of
+       std::visit.
+       (__same_types): Move into namespace __detail::__variant.
+       (__check_visitor_results): Likewise. Use __invoke_result_t and
+       __get_t.
+       (__check_visitor_result): Remove.
+       (visit): Use __visit_result_t for return type.
+       * testsuite/20_util/variant/100384.cc: New test.
+
 2021-05-05  Patrick Palka  <ppalka@redhat.com>
 
        Backported from master: