c++: -Waddress and value-dependent expr [PR105885]
authorJason Merrill <jason@redhat.com>
Thu, 23 Jun 2022 03:50:23 +0000 (23:50 -0400)
committerJason Merrill <jason@redhat.com>
Thu, 23 Jun 2022 15:45:27 +0000 (11:45 -0400)
We already suppress various warnings for code that would be tautological if
written directly, but not when it's the result of template substitution.  It
seems we need to do this for -Waddress as well.

PR c++/105885

gcc/cp/ChangeLog:

* pt.cc (tsubst_copy_and_build): Also suppress -Waddress for
comparison of dependent operands.

gcc/testsuite/ChangeLog:

* g++.dg/cpp1z/constexpr-if37.C: New test.

gcc/cp/pt.cc
gcc/testsuite/g++.dg/cpp1z/constexpr-if37.C [new file with mode: 0644]

index 6723800..e8bf169 100644 (file)
@@ -20364,6 +20364,7 @@ tsubst_copy_and_build (tree t,
        warning_sentinel s2(warn_div_by_zero, was_dep);
        warning_sentinel s3(warn_logical_op, was_dep);
        warning_sentinel s4(warn_tautological_compare, was_dep);
+       warning_sentinel s5(warn_address, was_dep);
 
        tree r = build_x_binary_op
          (input_location, TREE_CODE (t),
diff --git a/gcc/testsuite/g++.dg/cpp1z/constexpr-if37.C b/gcc/testsuite/g++.dg/cpp1z/constexpr-if37.C
new file mode 100644 (file)
index 0000000..e11e02c
--- /dev/null
@@ -0,0 +1,21 @@
+// PR c++/105885
+// { dg-do compile { target c++17 } }
+// { dg-additional-options -Wall }
+
+int i;
+
+template<const char* ARG = nullptr>
+void test() {
+  if constexpr(ARG == nullptr) {
+    ++i;
+  } else {
+    --i;
+  }
+}
+
+const char CONSTSTR[] = {'\n', '\t', ' ', '\0'};
+
+int main() {
+  test();
+  test<CONSTSTR>();
+}