[arm] Fix insn type of *thumb1_tablejump
[gcc.git] / libstdc++-v3 / ChangeLog
index d9908b6d8fd950960ef6a518721ad237bec59524..3984e9968f6942eb55facc1e63ee5e377fcb0b12 100644 (file)
@@ -1,3 +1,456 @@
+2019-09-12  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/91748
+       * include/bits/stl_algo.h (for_each_n): Fix random access iterator
+       case.
+       * testsuite/25_algorithms/for_each/for_each_n.cc: Test with random
+       access iterators.
+
+2019-09-11  Jonathan Wakely  <jwakely@redhat.com>
+
+       * python/libstdcxx/v6/xmethods.py (SharedPtrUseCountWorker.__call__):
+       Fix syntax error.
+
+       * testsuite/20_util/result_of/sfinae_friendly_1.cc: Add -Wno-volatile
+       for C++2a and up. Define HAS_52748_FIXED and fix incorrect tests.
+       * testsuite/tr1/3_function_objects/result_of.cc: Add -Wno-volatile
+       for C++2a and up.
+
+2019-09-10  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/type_traits (__do_common_type_impl): Implement
+       additional COND-RES(CREF(D1), CRED(D2)) condition for C++20.
+       (basic_common_reference, common_reference, common_reference_t): Define
+       for C++20.
+       * testsuite/20_util/common_reference/requirements/alias_decl.cc: New
+       test.
+       * testsuite/20_util/common_reference/requirements/
+       explicit_instantiation.cc: New test.
+       * testsuite/20_util/common_reference/requirements/typedefs.cc: New
+       test.
+
+       * include/std/charconv (to_chars): Rename to __to_chars_i. Define
+       non-template overloads for each signed and unsigned integer type and
+       char. Define deleted overload for bool (LWG 3266).
+       * testsuite/20_util/to_chars/1_neg.cc: Remove.
+       * testsuite/20_util/to_chars/3.cc: New test.
+       * testsuite/20_util/to_chars/lwg3266.cc: New test.
+
+2019-09-10  Christophe Lyon  <christophe.lyon@st.com>
+
+       * acinclude.m4: Handle uclinux*.
+       * configure: Regenerate.
+       * configure.host: Handle uclinux*
+
+2019-09-10  Christophe Lyon  <christophe.lyon@st.com>
+       Mickaël Guêné <mickael.guene@st.com>
+
+       * libsupc++/eh_personality.cc (get_ttype_entry): Add FDPIC
+       support.
+
+2019-09-10  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/91711
+       * testsuite/23_containers/span/get_neg.cc: Avoid ambiguity due to
+       0ul being a valid null pointer constant.
+
+       * include/std/type_traits (__remove_cv_t): New alias template.
+       (is_void, is_integral, is_floating_point, is_pointer)
+       (is_member_object_pointer, is_member_function_pointer, is_null_pointer)
+       (is_member_point), __is_signed_integer, __is_unsigned_integer)
+       (__make_unsigned_selector, __make_signed_selector, remove_pointer)
+       (__decay_selector): Use __remove_cv_t.
+       (remove_cv): Add partial specializations for cv-qualified types.
+       (__decay_t): New alias template.
+       (__decay_and_strip, __common_type_impl, __result_of_impl): Use
+       __decay_t.
+       (__enable_if_t): Move earlier in the file.
+       (_Require): Use __enable_if_t.
+       (swap(T&, T&)): Use _Require.
+       (swap(T(&)[N])): Use __enable_if_t.
+
+2019-09-09  Edward Smith-Rowland  <3dw4rd@verizon.net>
+
+       Implement C++20 p1424 - 'constexpr' feature macro concerns,
+       Issue 3256 - Feature testing macro for constexpr algorithms,
+       and Issue 3257 - Missing feature testing macro update from P0858.
+       * include/std/version (__cpp_lib_constexpr_algorithms): Bump value.
+       * include/bits/algorithmfwd.h: Ditto.
+       * include/std/utility: Ditto.
+       * testsuite/25_algorithms/constexpr_macro.cc: Ditto.
+       * testsuite/25_algorithms/cpp_lib_constexpr.cc: New check for
+       __cpp_lib_constexpr macro in <algorith>.
+       * testsuite/20_util/exchange/constexpr.cc: Add check for
+       __cpp_lib_constexpr macro in <utility>.
+       * testsuite/25_algorithms/adjacent_find/constexpr.cc: Remove check for
+       __cpp_lib_constexpr_algorithms.
+       * testsuite/25_algorithms/all_of/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/any_of/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/binary_search/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/copy/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/copy_backward/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/copy_if/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/copy_n/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/count/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/count_if/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/equal/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/equal_range/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/fill/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/fill_n/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/find/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/find_end/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/find_first_of/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/find_if/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/find_if_not/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/for_each/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/generate/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/generate_n/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/is_heap/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/is_heap_until/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/is_partitioned/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/is_permutation/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/is_sorted/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/is_sorted_until/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/lexicographical_compare/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/lower_bound/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/merge/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/mismatch/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/none_of/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/partition_copy/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/partition_point/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/remove/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/remove_copy/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/remove_copy_if/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/remove_if/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/replace_copy/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/replace_copy_if/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/replace_if/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/reverse_copy/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/rotate_copy/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/search/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/search_n/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/set_difference/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/set_intersection/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/set_symmetric_difference/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/set_union/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/transform/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/unique/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/unique_copy/constexpr.cc: Ditto.
+       * testsuite/25_algorithms/upper_bound/constexpr.cc: Ditto.
+
+2019-09-09  Edward Smith-Rowland  <3dw4rd@verizon.net>
+
+       Update docs for recent <span> and constexpr lib changes.
+       * doc/xml/manual/status_cxx2020.xml: Update p0202r3, p0858r0, p0879r0,
+       p1023r0, p1085r2 status.
+       * doc/html/manual/status.html: Regenerate.
+
+2019-09-09  Antony Polukhin  <antoshkka@gmail.com>
+
+       * include/bits/charconv.h (__detail::__to_chars_10_impl): Replace
+       final offsets with constants.
+
+2019-09-09  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/range_access.h (__adl_to_address): Remove.
+       * include/std/span (__is_base_derived_safe_convertible_v): Replace
+       with span::__is_compatible.
+       (__is_std_array_v): Replace with __is_std_array class template and
+       partial specializations.
+       (__is_std_array, __is_std_span): New class templates and partial
+       specializations.
+       (span::__is_compatible): New alias template for SFINAE constraints.
+       (span::span(element_type (&)[N])): Remove redundant constraints. Do
+       not use __adl_data to obtain a pointer.
+       (span::span(array<value_type, N>&)): Likewise.
+       (span::span(const array<value_type, N>&)): Likewise.
+       [_GLIBCXX_P1394] (span::iter_reference_t, span::iterator_t)
+       (span::iter_value_t, span::derived_from): New alias templates for
+       SFINAE constraints, until the equivalents are supported in <concepts>
+       and <iterator>.
+       [_GLIBCXX_P1394] (span::__is_compatible_iterator): New alias template
+       for SFINAE constraints.
+       [_GLIBCXX_P1394] (span::is_compatible_range): New class template for
+       SFINAE constraints.
+       [_GLIBCXX_P1394] (span::span(Range&&)): Improve constraints.
+       [_GLIBCXX_P1394] (span::span(ContiguousIterator, Sentinel)): Likewise.
+       Use std::to_address instead of __adl_to_address.
+       [_GLIBCXX_P1394] (span::span(ContiguousIterator, size_type)): Likewise.
+       [!_GLIBCXX_P1394] (span::__is_compatible_container): New alias
+       template for SFINAE constraints.
+       [!_GLIBCXX_P1394] (span::span(Container&))
+       (span::span(const Container&)): Improve constraints.
+       [!_GLIBCXX_P1394] (span::span(pointer, size_type))
+       (span::span(pointer, pointer)): Remove redundant cast of pointer.
+       (span(const span<OType, OExtent>&)): New constructor.
+
+2019-09-06  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/range_access.h (ssize): Define for C++20.
+       * testsuite/24_iterators/range_access_cpp20.cc: New test.
+       * doc/xml/manual/status_cxx2020.xml: Update P1227R2 status.
+       * doc/html/*: Regenerate.
+
+2019-09-06  Florian Weimer  <fweimer@redhat.com>
+
+       * configure: Regenerate.
+
+2019-09-05  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/xml/manual/status_cxx2020.xml: Update status for P0122R7 and
+       P1024R3. Remove entry for P0920R2.
+       * include/std/span  (__cpp_lib_span): Change value.
+       (__extent_storage, __extent_storage<dynamic_extent>): Remove default
+       constructor.
+       (span): Replace __extent_storage base class with data member.
+       (span::_S_subspan_extent): New function.
+       (span::empty()): Add nodiscard attribute.
+       (span::front, span::back, span::operator[]): Check preconditions.
+       (span::first, span::last, span::subspan): Add noexcept. Improve
+       precondition checks (LWG 3103).
+       (get): Remove redundant condition from static_assert.
+       (tuple_element<I, span<T, E>>): Fix static_assert message and simplify.
+       (as_writable_bytes): Add inline specifier.
+       * include/std/version (__cpp_lib_span): Change value.
+       * testsuite/23_containers/span/back_neg.cc: Remove stray semi-colon.
+       * testsuite/23_containers/span/front_neg.cc: Likewise.
+       * testsuite/23_containers/span/index_op_neg.cc: Likewise.
+       * testsuite/23_containers/span/last_neg.cc: Improve test.
+       * testsuite/23_containers/span/subspan_neg.cc: Likewise.
+       * testsuite/23_containers/span/1.cc: New test.
+       * testsuite/23_containers/span/2.cc: New test.
+       * testsuite/23_containers/span/back_assert_neg.cc: New test.
+       * testsuite/23_containers/span/first_2_assert_neg.cc: New test.
+       * testsuite/23_containers/span/first_assert_neg.cc: New test.
+       * testsuite/23_containers/span/first_neg.cc: New test.
+       * testsuite/23_containers/span/front_assert_neg.cc: New test.
+       * testsuite/23_containers/span/index_op_assert_neg.cc: New test.
+       * testsuite/23_containers/span/last_2_assert_neg.cc: New test.
+       * testsuite/23_containers/span/last_assert_neg.cc: New test.
+       * testsuite/23_containers/span/subspan_2_assert_neg.cc: New test.
+       * testsuite/23_containers/span/subspan_3_assert_neg.cc: New test.
+       * testsuite/23_containers/span/subspan_4_assert_neg.cc: New test.
+       * testsuite/23_containers/span/subspan_5_assert_neg.cc: New test.
+       * testsuite/23_containers/span/subspan_6_assert_neg.cc: New test.
+       * testsuite/23_containers/span/subspan_assert_neg.cc: New test.
+
+2019-09-05  JeanHeyd Meneide  <phdofthehouse@gmail.com>
+
+       * include/Makefile.am: Add <span> header.
+       * include/Makefile.in: Regenerate.
+       * include/bits/range_access.h (__adl_begin, __adl_end, __adl_cbegin)
+       (__adl_cend, __adl_rbegin, __adl_rend, __adl_crbegin, __adl_crend)
+       (__adl_data, __adl_cdata, __adl_size, __adl_empty, __adl_to_address):
+       New functions for performing argument-dependent lookup of range
+       customization points.
+       * include/bits/stl_iterator.h (__normal_iterator): Add
+       _GLIBCXX20_CONSTEXPR to all functions.
+       * include/std/span: New header.
+       * include/std/version (__cpp_lib_span): Define feature test macro.
+       * testsuite/23_containers/span/contiguous_range_neg.cc: New test.
+       * testsuite/23_containers/span/everything.cc: New test.
+       * testsuite/23_containers/span/get_neg.cc: New test.
+       * testsuite/23_containers/span/last_neg.cc: New test.
+       * testsuite/23_containers/span/subspan_neg.cc: New test.
+       * testsuite/23_containers/span/tuple_element_dynamic_neg.cc: New test.
+       * testsuite/23_containers/span/tuple_element_oob_neg.cc: New test.
+       * testsuite/23_containers/span/tuple_size_neg.cc: New test.
+
+2019-09-05  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/xml/manual/allocator.xml: Remove URL for bibliography entry.
+       * doc/html/*: Regenerate.
+
+2019-09-04  Mike Crowe  <mac@mcrowe.com>
+
+       PR libstdc++/41861
+       * acinclude.m4 (GLIBCXX_CHECK_PTHREAD_COND_CLOCKWAIT): Check for new
+       pthread_cond_clockwait function.
+       * configure.ac: Use GLIBCXX_CHECK_PTHREAD_COND_CLOCKWAIT.
+       * configure: Regenerate.
+       * config.h.in: Regenerate.
+       * include/std/condition_variable: (condition_variable): Rename
+       __steady_clock_t typedef and add system_clock. Change __clock_t to be
+       a typedef for the preferred clock to convert arbitrary other clocks to.
+       [_GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT] (wait_until): Add a steady_clock
+       overload.
+       (wait_until): Change __clock_t overload to use system_clock.
+       [_GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT] (__wait_until_impl): Add
+       steady_clock overload that calls pthread_cond_clockwait.
+       (__wait_until_impl): Change __clock_t overload to use system_clock.
+       (condition_variable_any) [_GLIBCXX_USE_PTHREAD_COND_CLOCKWAIT]: Use
+       steady_clock for __clock_t if pthread_cond_clockwait is available.
+
+2019-09-04  Mike Crowe  <mac@mcrowe.com>
+
+       * testsuite/30_threads/condition_variable/members/2.cc (test01):
+       Parameterise so that test can be run against an arbitrary clock.
+       (main): Test using std::chrono::steady_clock and a user-defined
+       clock in addition to the previous std::chrono::system_clock.
+       * testsuite/30_threads/condition_variable_any/members/2.cc: Likewise.
+
+2019-09-03  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * crossconfig.m4: Remove references to spu.
+       * configure: Regenerate.
+       * doc/xml/manual/appendix_contributing.xml: Remove references
+       to __ea as "badword" for spu.
+       * doc/html/manual/source_code_style.html: Regenerate.
+       * include/tr1/ell_integral.tcc (__ellint_rd): Do not attempt
+       to avoid __ea (as "badword" for spu).
+       (__ellint_rj): Likewise.
+
+2019-09-03  Chung-Lin Tang  <cltang@codesourcery.com>
+
+       PR other/79543
+       * acinclude.m4 (GLIBCXX_CHECK_LINKER_FEATURES): Fix GNU ld --version
+       scanning to conform to the GNU Coding Standards.
+       * configure: Regenerate.
+
+2019-09-02  Jonathan Wakely  <jwakely@redhat.com>
+
+       * src/c++17/memory_resource.cc: Use __constinit keyword.
+
+2019-09-02  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/xml/manual/abi.xml: Document 9.x library versions.
+       * doc/html/*: Regenerate.
+
+2019-09-02  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/charconv (__detail::__to_chars_2_len): Use std::log2p1.
+       (__detail::__to_chars_8_len): Remove.
+       (__detail::__to_chars_8): Inline length calculation here.
+       (__detail::__from_chars_binary): Use numeric_limits instead of
+       CHAR_BIT.
+
+2019-09-02  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>
+
+       * config/abi/post/i386-solaris/baseline_symbols.txt: Regenerate.
+       * config/abi/post/i386-solaris/amd64/baseline_symbols.txt: Likewise.
+       * config/abi/post/sparc-solaris/baseline_symbols.txt: Likewise.
+       * config/abi/post/sparc-solaris/sparcv9/baseline_symbols.txt:
+       Likewise.
+
+2019-09-01  François Dumont  <fdumont@gcc.gnu.org>
+
+       * testsuite_files/util/testsuite_performance.h
+       (resource_counter::start): Ignore unused malloc(0) result.
+
+2019-09-01  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * doc/xml/manual/policy_data_structures_biblio.xml (COM: Component
+       Model Object Technologies): Adjust name and link.
+
+2019-08-30  Antony Polukhin  <antoshkka@gmail.com>
+
+       * include/std/charconv (__detail::__to_chars_8)
+       __detail::__to_chars_16): Replace array of precomputed digits with
+       arithmetic operations to avoid CPU cache misses. Remove zero
+       termination from array of digits to allow symbol merge with generic
+       implementation of __detail::__to_chars. Replace final offsets with
+       constants. Use __detail::__to_chars_len_2 instead of a generic
+       __detail::__to_chars_len.
+       (__detail::__to_chars): Remove zero termination from array of digits.
+       (__detail::__to_chars_2): Leading digit is always '1'.
+
+2019-08-30  Jonathan Wakely  <jwakely@redhat.com>
+
+       * testsuite/23_containers/vector/cons/89164_c++17.cc: Fix errors.
+
+2019-08-30  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/abi/post/alpha-linux-gnu/baseline_symbols.txt: Update.
+
+2019-08-30  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/89164
+       * include/bits/stl_algobase.h (__copy_move): Give descriptive names
+       to template parameters.
+       * include/bits/stl_uninitialized.h (uninitialized_copy)
+       (uninitialized_fill, uninitialized_fill_n): Add static assertions to
+       diagnose invalid uses.
+       * testsuite/20_util/specialized_algorithms/uninitialized_copy/1.cc:
+       Adjust expected error.
+       * testsuite/20_util/specialized_algorithms/uninitialized_copy/89164.cc:
+       New test.
+       * testsuite/20_util/specialized_algorithms/uninitialized_copy_n/
+       89164.cc: New test.
+       * testsuite/20_util/specialized_algorithms/uninitialized_fill/89164.cc:
+       New test.
+       * testsuite/20_util/specialized_algorithms/uninitialized_fill_n/
+       89164.cc: New test.
+       * testsuite/23_containers/vector/cons/89164.cc: New test.
+       * testsuite/23_containers/vector/cons/89164_c++17.cc: New test.
+
+2019-08-29  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/91067
+       * acinclude.m4 (libtool_VERSION): Bump to 6:28:0.
+       * configure: Regenerate.
+       * config/abi/pre/gnu.ver (GLIBCXX_3.4.28): Add new version. Export
+       missing symbols.
+       * testsuite/27_io/filesystem/iterators/91067.cc: Test move
+       constructors.
+       * testsuite/util/testsuite_abi.cc: Add new symbol version.
+
+2019-08-29  Jakub Jelinek  <jakub@redhat.com>
+
+       * config/abi/post/aarch64-linux-gnu/baseline_symbols.txt: Update.
+       * config/abi/post/s390x-linux-gnu/baseline_symbols.txt: Update.
+
+2019-08-28  Jonathan Wakely  <jwakely@redhat.com>
+
+       * config/abi/post/i386-linux-gnu/baseline_symbols.txt: Update.
+       * config/abi/post/i486-linux-gnu/baseline_symbols.txt: Update.
+       * config/abi/post/powerpc-linux-gnu/baseline_symbols.txt: Update.
+       * config/abi/post/powerpc64-linux-gnu/32/baseline_symbols.txt: Update.
+       * config/abi/post/powerpc64-linux-gnu/baseline_symbols.txt: Update.
+       * config/abi/post/x86_64-linux-gnu/32/baseline_symbols.txt: Update.
+       * config/abi/post/x86_64-linux-gnu/baseline_symbols.txt: Update.
+
+2019-08-23  Joseph Myers  <joseph@codesourcery.com>
+
+       * src/filesystem/ops-common.h [_GLIBCXX_FILESYSTEM_IS_WINDOWS]
+       (std::filesystem::__gnu_posix::lstat): Add return type.
+
+2019-08-20  Jonathan Wakely  <jwakely@redhat.com>
+
+       * doc/doxygen/user.cfg.in (INPUT): Remove profile mode headers.
+
+       * include/std/numeric (reduce): Fix Doxygen markup.
+
+       PR libstdc++/91371
+       * include/std/type_traits (is_function): Simplify definition. Remove
+       partial specializations for function types.
+       (__is_referenceable): Simplify definition.
+       * testsuite/20_util/bind/91371.cc: New test.
+       * testsuite/20_util/is_function/91371.cc: New test.
+       * testsuite/20_util/is_function/value.cc: Check more pointer types.
+       * testsuite/20_util/is_member_function_pointer/91371.cc: New test.
+       * testsuite/20_util/is_object/91371.cc: New test.
+
+2019-08-16  Uros Bizjak  <ubizjak@gmail.com>
+
+       * config/abi/post/alpha-linux-gnu/baseline_symbols.txt: Update.
+
+2019-08-15  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/91456
+       * include/bits/std_function.h (__check_func_return_type): Remove.
+       (function::_Callable): Use std::__is_invocable_impl instead of
+       __check_func_return_type.
+       * include/std/type_traits (__is_invocable_impl): Add another defaulted
+       template parameter. Define a separate partial specialization for
+       INVOKE and INVOKE<void>. For INVOKE<R> replace is_convertible check
+       with a check that models delayed temporary materialization.
+       * testsuite/20_util/function/91456.cc: New test.
+       * testsuite/20_util/is_invocable/91456.cc: New test.
+
+2019-08-14  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/type_traits (__is_nullptr_t): Add deprecated attribute.
+
 2019-08-14  Edward Smith-Rowland  <3dw4rd@verizon.net>
 
        Implement C++20 p0879 - Constexpr for swap and swap related functions.