+2019-10-21 Marek Polacek <polacek@redhat.com>
+
+ PR c++/92062 - ODR-use ignored for static member of class template.
+ * pt.c (has_value_dependent_address): Strip location wrappers.
+
2019-10-21 Marek Polacek <polacek@redhat.com>
PR c++/92106 - ICE with structured bindings and -Wreturn-local-addr.
static bool
has_value_dependent_address (tree op)
{
+ STRIP_ANY_LOCATION_WRAPPER (op);
+
/* We could use get_inner_reference here, but there's no need;
this is only relevant for template non-type arguments, which
can only be expressed as &id-expression. */
+2019-10-21 Marek Polacek <polacek@redhat.com>
+
+ PR c++/92062 - ODR-use ignored for static member of class template.
+ * g++.dg/cpp0x/constexpr-odr1.C: New test.
+ * g++.dg/cpp0x/constexpr-odr2.C: New test.
+
2019-10-21 Marek Polacek <polacek@redhat.com>
PR c++/92106 - ICE with structured bindings and -Wreturn-local-addr.
--- /dev/null
+// PR c++/92062 - ODR-use ignored for static member of class template.
+// { dg-do run { target c++11 } }
+
+template<int> struct A {
+ static const bool x;
+ static_assert(&x, ""); // odr-uses A<...>::x
+};
+
+int g;
+
+template<int I>
+const bool A<I>::x = (g = 42, false);
+
+void f(A<0>) {} // A<0> must be complete, so is instantiated
+int main()
+{
+ if (g != 42)
+ __builtin_abort ();
+}
--- /dev/null
+// PR c++/92062 - ODR-use ignored for static member of class template.
+// { dg-do run { target c++11 } }
+
+template<int> struct A {
+ static const bool x;
+ enum { force_instantiation =! &x}; // odr-uses A<...>::x
+};
+
+int g;
+
+template<int I>
+const bool A<I>::x = (g = 42, false);
+
+void f(A<0>) {} // A<0> must be complete, so is instantiated
+int main()
+{
+ if (g != 42)
+ __builtin_abort ();
+}