+2020-06-28 Martin Sebor <msebor@redhat.com>
+
+ PR c++/86568
+ * calls.c (maybe_warn_rdwr_sizes): Use location of argument if
+ available.
+ * tree-ssa-ccp.c (pass_post_ipa_warn::execute): Same. Adjust
+ indentation.
+ * tree.c (get_nonnull_args): Consider the this pointer implicitly
+ nonnull.
+ * var-tracking.c (deps_vec): New type.
+ (var_loc_dep_vec): New function.
+ (VAR_LOC_DEP_VEC): Use it.
+
+2020-06-28 Kewen Lin <linkw@linux.ibm.com>
+
+ * internal-fn.c (direct_mask_load_optab_supported_p): Use
+ convert_optab_supported_p instead of direct_optab_supported_p.
+ (direct_mask_store_optab_supported_p): Likewise.
+
2020-06-27 Aldy Hernandez <aldyh@redhat.com>
* gimple-ssa-evrp-analyze.h (vrp_visit_cond_stmt): Use
+2020-06-28 Martin Sebor <msebor@redhat.com>
+
+ PR c++/86568
+ * c-common.c (struct nonnull_arg_ctx): Add members.
+ (check_function_nonnull): Use nonnull_arg_ctx as argument. Handle
+ C++ member functions specially. Consider the this pointer implicitly
+ nonnull.
+ (check_nonnull_arg): Use location of argument when available.
+ (check_function_arguments): Use nonnull_arg_ctx as argument.
+
2020-06-27 Jakub Jelinek <jakub@redhat.com>
PR middle-end/95903
+2020-06-28 Iain Sandoe <iain@sandoe.co.uk>
+
+ PR c++/95711
+ * coroutines.cc (register_local_var_uses): Skip past
+ namespace decls.
+
2020-06-27 Iain Sandoe <iain@sandoe.co.uk>
PR c++/95736
+2020-06-28 Iain Buclaw <ibuclaw@gdcproject.org>
+
+ * dmd/MERGE: Merge upstream dmd 8508c4e68.
+
2020-06-25 Iain Buclaw <ibuclaw@gdcproject.org>
* decl.cc (get_symbol_decl): Do not implicitly set
+2020-06-28 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/95340
+ * match.c (gfc_match_select_rank): Do not dereference NULL pointer.
+
+2020-06-28 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/95880
+ * symbol.c (gfc_add_type): If sym->ns->proc_name is set, use it,
+ otherwise fall back to sym->name.
+
2020-06-27 Harald Anlauf <anlauf@gmx.de>
PR fortran/95881
+2020-06-28 Martin Sebor <msebor@redhat.com>
+
+ PR c++/86568
+ * g++.dg/warn/Wnonnull5.C: New test.
+ * c-c++-common/pr28656.c: Adjust text of expected warning.
+ * c-c++-common/pr66208.c: Same.
+ * g++.dg/cpp0x/nullptr22.C: Same.
+ * g++.dg/ext/attr-nonnull.C: Same.
+ * g++.dg/ext/attrib49.C: Same.
+ * g++.dg/pr71973-2.C: Same.
+ * g++.dg/warn/Wnonnull3.C: Same.
+ * g++.dg/warn/Wnonnull4.C: Same.
+ * obj-c++.dg/attributes/method-nonnull-1.mm: Same.
+ * objc.dg/attributes/method-nonnull-1.m: Same.
+
+2020-06-28 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/95340
+ * gfortran.dg/pr95340.f90: New file.
+
+2020-06-28 Iain Sandoe <iain@sandoe.co.uk>
+
+ PR c++/95711
+ * g++.dg/coroutines/pr95711.C: New test.
+
+2020-06-28 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/95880
+ * gfortran.dg/pr95880.f90: New file.
+
+2020-06-28 Iain Sandoe <iain@sandoe.co.uk>
+
+ PR c++/95519
+ * g++.dg/coroutines/torture/pr95519-02-final_suspend.C:
+ Amend log messages.
+ * g++.dg/coroutines/torture/pr95519-03-return-value.C:
+ Likewise.
+ * g++.dg/coroutines/torture/pr95519-04-yield-value.C:
+ Likewise.
+ * g++.dg/coroutines/torture/pr95519-05-gro.C: Likewise.
+
+2020-06-28 David Edelsohn <dje.gcc@gmail.com>
+
+ * gcc.target/powerpc/prefix-large-dd.c: Require DFP.
+ * gcc.target/powerpc/prefix-large-sd.c: Require DFP.
+ * gcc.target/powerpc/prefix-large-kf.c: Require float128.
+ * gcc.target/powerpc/prefix-pcrel-dd.c: Require DFP.
+ * gcc.target/powerpc/prefix-pcrel-sd.c: Require DFP.
+ * gcc.target/powerpc/prefix-pcrel-kf.c: Require float128.
+
2020-06-27 Harald Anlauf <anlauf@gmx.de>
PR fortran/95881
+2020-06-28 Ville Voutilainen <ville.voutilainen@gmail.com>
+
+ * include/bits/basic_string.h (string(_CharT*, const _Alloc&)):
+ Add a __nonnull__ attribute.
+ * testsuite/21_strings/basic_string/cons/char/nonnull.cc: New.
+ * testsuite/21_strings/basic_string/cons/wchar_t/nonnull.cc: Likewise.
+
+2020-06-28 Ville Voutilainen <ville.voutilainen@gmail.com>
+
+ PR libstdc++/95915
+ * include/std/type_traits (is_literal_type, is_literal_type_v):
+ Deprecate in C++17.
+ * include/std/variant (_Uninitialized):
+ Adjust the condition and the comment.
+ * testsuite/20_util/is_literal_type/deprecated-1z.cc: New.
+ * testsuite/20_util/is_literal_type/requirements/explicit_instantiation.cc:
+ Adjust.
+ * testsuite/20_util/is_literal_type/requirements/typedefs.cc: Likewise.
+ * testsuite/20_util/is_literal_type/value.cc: Likewise.
+ * testsuite/20_util/optional/constexpr/nullopt.cc:
+ Use __is_literal_type directly.
+ * testsuite/20_util/optional/nullopt.cc: Likewise.
+ * testsuite/20_util/variable_templates_for_traits.cc: Adjust.
+ * testsuite/20_util/variant/95915.cc: New.
+ * testsuite/20_util/variant/compile.cc: Add new test.
+ * testsuite/experimental/optional/constexpr/nullopt.cc:
+ Use __is_literal_type directly.
+ * testsuite/experimental/optional/nullopt.cc: Likewise.
+ * testsuite/experimental/type_traits/value.cc: Adjust.
+ * testsuite/util/testsuite_common_types.h:
+ Use __is_literal_type directly.
+
2020-06-24 Jonathan Wakely <jwakely@redhat.com>
* include/std/charconv (__from_chars_binary): Ignore leading zeros.