diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 1cd2a630c79e38f7c9dfed357650b1a97b931ec0..f4c87c56b1c74c2b36ce162e285a55a9ae638a93 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,5 +1,9 @@
 2019-09-24  Marek Polacek  <polacek@redhat.com>
 
+	PR c++/91868 - improve -Wshadow location.
+	* name-lookup.c (check_local_shadow): Use DECL_SOURCE_LOCATION
+	instead of input_location.
+
 	PR c++/91845 - ICE with invalid pointer-to-member.
 	* expr.c (mark_use): Use error_operand_p.
 	* typeck2.c (build_m_component_ref): Check error_operand_p after
diff --git a/gcc/cp/name-lookup.c b/gcc/cp/name-lookup.c
index 8bbb92ddc9faa4e0343a7329b6554d3ee883acdf..74f1072fa8c5c361e15d36341c994bd092b90078 100644
--- a/gcc/cp/name-lookup.c
+++ b/gcc/cp/name-lookup.c
@@ -2771,7 +2771,7 @@ check_local_shadow (tree decl)
 	msg = "declaration of %qD shadows a previous local";
 
       auto_diagnostic_group d;
-      if (warning_at (input_location, warning_code, msg, decl))
+      if (warning_at (DECL_SOURCE_LOCATION (decl), warning_code, msg, decl))
 	inform_shadowed (old);
       return;
     }
@@ -2798,7 +2798,7 @@ check_local_shadow (tree decl)
 	    || TYPE_PTRMEMFUNC_P (TREE_TYPE (decl)))
 	  {
 	    auto_diagnostic_group d;
-	    if (warning_at (input_location, OPT_Wshadow,
+	    if (warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wshadow,
 			    "declaration of %qD shadows a member of %qT",
 			    decl, current_nonlambda_class_type ())
 		&& DECL_P (member))
@@ -2818,7 +2818,7 @@ check_local_shadow (tree decl)
     /* XXX shadow warnings in outer-more namespaces */
     {
       auto_diagnostic_group d;
-      if (warning_at (input_location, OPT_Wshadow,
+      if (warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wshadow,
 		      "declaration of %qD shadows a global declaration",
 		      decl))
 	inform_shadowed (old);
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index a38a0573c28dbce4b9c66d8a31f090de5ce47f02..b90eb6d13ca05666c526c46b24900e8029ed6cc3 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,5 +1,8 @@
 2019-09-24  Marek Polacek  <polacek@redhat.com>
 
+	PR c++/91868 - improve -Wshadow location.
+	* g++.dg/warn/Wshadow-16.C: New test.
+
 	PR c++/91845 - ICE with invalid pointer-to-member.
 	* g++.dg/cpp1y/pr91845.C: New test.
 
diff --git a/gcc/testsuite/g++.dg/warn/Wshadow-16.C b/gcc/testsuite/g++.dg/warn/Wshadow-16.C
new file mode 100644
index 0000000000000000000000000000000000000000..bbf3a463fe2ac1e25e5a8f671c7c747554e35d46
--- /dev/null
+++ b/gcc/testsuite/g++.dg/warn/Wshadow-16.C
@@ -0,0 +1,24 @@
+// PR c++/91868 - improve -Wshadow location.
+// { dg-options "-Wshadow" }
+
+int global; // { dg-message "shadowed declaration" }
+
+struct S
+{
+  static int bar; // { dg-message "shadowed declaration" }
+  S (int i) { int bar // { dg-warning "19:declaration of .bar. shadows a member" }
+      (1);
+    int global // { dg-warning "9:declaration of .global. shadows a global declaration" }
+      (42);
+  }
+};
+
+void
+foo ()
+{
+  int xx; // { dg-message "shadowed declaration" }
+  {
+    S xx // { dg-warning "7:declaration of .xx. shadows a previous local" }
+    (42);
+  }
+}