]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c++: bogus -Wparentheses warning [PR112765]
authorPatrick Palka <ppalka@redhat.com>
Wed, 29 Nov 2023 21:42:39 +0000 (16:42 -0500)
committerPatrick Palka <ppalka@redhat.com>
Wed, 29 Nov 2023 21:42:39 +0000 (16:42 -0500)
We need to consistently look through implicit INDIRECT_REF when
setting/checking for -Wparentheses warning suppression.  In passing
use the recently introduced STRIP_REFERENCE_REF helper some more.

PR c++/112765

gcc/cp/ChangeLog:

* pt.cc (tsubst_expr) <case MODOP_EXPR>: Look through implicit
INDIRECT_REF when propagating -Wparentheses warning suppression.
* semantics.cc (maybe_warn_unparenthesized_assignment): Replace
REFERENCE_REF_P handling with STRIP_REFERENCE_REF.
(finish_parenthesized_expr): Likewise.

gcc/testsuite/ChangeLog:

* g++.dg/warn/Wparentheses-33.C: New test.

gcc/cp/pt.cc
gcc/cp/semantics.cc
gcc/testsuite/g++.dg/warn/Wparentheses-33.C [new file with mode: 0644]

index 092e6fdfd36999ca416ff92e9758ff916d7208df..c18718b319dfc55e0dc8a6f813898198261f65dc 100644 (file)
@@ -20279,7 +20279,7 @@ tsubst_expr (tree t, tree args, tsubst_flags_t complain, tree in_decl)
           build_x_modify_expr sets it and it must not be reset
           here.  */
        if (warning_suppressed_p (t, OPT_Wparentheses))
-         suppress_warning (r, OPT_Wparentheses);
+         suppress_warning (STRIP_REFERENCE_REF (r), OPT_Wparentheses);
 
        RETURN (r);
       }
index d30a3f99c040e36258f54563d3f22979a003a5be..04b0540599a4eb48e8259054eb86eac5a1dca7a6 100644 (file)
@@ -871,8 +871,7 @@ is_assignment_op_expr_p (tree t)
 void
 maybe_warn_unparenthesized_assignment (tree t, tsubst_flags_t complain)
 {
-  if (REFERENCE_REF_P (t))
-    t = TREE_OPERAND (t, 0);
+  t = STRIP_REFERENCE_REF (t);
 
   if ((complain & tf_warning)
       && warn_parentheses
@@ -2176,8 +2175,7 @@ finish_parenthesized_expr (cp_expr expr)
     {
       /* This inhibits warnings in maybe_warn_unparenthesized_assignment
         and c_common_truthvalue_conversion.  */
-      tree inner = REFERENCE_REF_P (expr) ? TREE_OPERAND (expr, 0) : *expr;
-      suppress_warning (inner, OPT_Wparentheses);
+      suppress_warning (STRIP_REFERENCE_REF (*expr), OPT_Wparentheses);
     }
 
   if (TREE_CODE (expr) == OFFSET_REF
diff --git a/gcc/testsuite/g++.dg/warn/Wparentheses-33.C b/gcc/testsuite/g++.dg/warn/Wparentheses-33.C
new file mode 100644 (file)
index 0000000..cc5038e
--- /dev/null
@@ -0,0 +1,24 @@
+// PR c++/112765
+
+struct A {
+  A& operator=(const A&);
+  operator bool() const;
+};
+
+template<class T>
+void f(A a1, A a2) {
+  if ((a2 = a1)) // { dg-bogus "parentheses" }
+    return;
+  bool b = (a2 = a1); // { dg-bogus "parentheses" }
+}
+
+template void f<int>(A, A);
+
+template<class T>
+void g(T a1, T a2) {
+  if ((a2 = a1)) // { dg-bogus "parentheses" }
+    return;
+  bool b = (a2 = a1); // { dg-bogus "parentheses" }
+}
+
+template void g<A>(A, A);