c++: Fix bogus -Wparentheses warning with fold-expression [PR94505]
authorMarek Polacek <polacek@redhat.com>
Sun, 19 Apr 2020 16:12:01 +0000 (12:12 -0400)
committerMarek Polacek <polacek@redhat.com>
Mon, 20 Apr 2020 19:35:06 +0000 (15:35 -0400)
We issue bogus -Wparentheses warnings (3 of them!) for this fold expression:

  ((B && true) || ...)

Firstly, issuing a warning for a compiler-generated expression is wrong
and secondly, B && true must be wrapped in ( ) otherwise you'll get
error: binary expression in operand of fold-expression.

PR c++/94505 - bogus -Wparentheses warning with fold-expression.
* pt.c (fold_expression): Add warning_sentinel for -Wparentheses
before calling build_x_binary_op.

* g++.dg/cpp1z/fold11.C: New test.

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp1z/fold11.C [new file with mode: 0644]

index 891ec79fcfd216b01f20420a1cb03f30a2c49f89..52f199d90bf34c97e861f255cf1fca80c2d6551e 100644 (file)
@@ -1,3 +1,9 @@
+2020-04-20  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/94505 - bogus -Wparentheses warning with fold-expression.
+       * pt.c (fold_expression): Add warning_sentinel for -Wparentheses
+       before calling build_x_binary_op.
+
 2020-04-20  Marek Polacek  <polacek@redhat.com>
 
        * coroutines.cc (captures_temporary): Don't assign the result of
index 4f4c04e7df8961dcc4e0c826724c66f6f49e6f90..899df9a330cf67c63c42b3c2d2a57a448f3737cb 100644 (file)
@@ -12379,6 +12379,7 @@ fold_expression (tree t, tree left, tree right, tsubst_flags_t complain)
   if (FOLD_EXPR_MODIFY_P (t))
     return build_x_modify_expr (input_location, left, code, right, complain);
 
+  warning_sentinel s(warn_parentheses);
   switch (code)
     {
     case COMPOUND_EXPR:
index ce31ed0cd448dff98fc8f03d6ab2990ba08edc7b..33f008b9af432b0773694cb9d31c76a744b41dd2 100644 (file)
@@ -1,3 +1,8 @@
+2020-04-20  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/94505 - bogus -Wparentheses warning with fold-expression.
+       * g++.dg/cpp1z/fold11.C: New test.
+
 2020-04-20  Andreas Krebbel  <krebbel@linux.ibm.com>
 
        * g++.dg/pr94666.C: New test.
diff --git a/gcc/testsuite/g++.dg/cpp1z/fold11.C b/gcc/testsuite/g++.dg/cpp1z/fold11.C
new file mode 100644 (file)
index 0000000..09a3055
--- /dev/null
@@ -0,0 +1,12 @@
+// PR c++/94505 - bogus -Wparentheses warning with fold-expression.
+// { dg-do compile { target c++17 } }
+// { dg-options "-Wparentheses" }
+
+template <bool... B>
+bool foo () {
+    return ((B && true) || ...); // { dg-bogus "suggest parentheses" }
+}
+
+int main () {
+    foo<true, false, false, true> ();
+}