]> gcc.gnu.org Git - gcc.git/commitdiff
c++: Fix up error recovery of invalid structured bindings used in conditions [PR116113]
authorJakub Jelinek <jakub@redhat.com>
Thu, 1 Aug 2024 16:49:39 +0000 (18:49 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Thu, 1 Aug 2024 16:49:39 +0000 (18:49 +0200)
The following testcase ICEs, because for structured binding error recovery
DECL_DECOMP_BASE is kept NULL and the newly added code to pick up saved
value from the base assumes that on structured binding bases the
TARGET_EXPR will be always there (that is the case if there are no errors).

The following patch fixes it by testing DECL_DECOMP_BASE before
dereferencing it, another option would be not to do that if
error_operand_p (cond).

2024-08-01  Jakub Jelinek  <jakub@redhat.com>

PR c++/116113
* semantics.cc (maybe_convert_cond): Check DECL_DECOMP_BASE
is non-NULL before dereferencing it.
(finish_switch_cond): Likewise.

* g++.dg/cpp26/decomp11.C: New test.

gcc/cp/semantics.cc
gcc/testsuite/g++.dg/cpp26/decomp11.C [new file with mode: 0644]

index a9abf32e01ff6f2cae3dbc2cfdb245de9a381b1f..669da4ad96988dec34f8ba69c204ede166d201db 100644 (file)
@@ -972,6 +972,7 @@ maybe_convert_cond (tree cond)
      result in a TARGET_EXPR, pick it up from there.  */
   if (DECL_DECOMPOSITION_P (cond)
       && DECL_DECOMP_IS_BASE (cond)
+      && DECL_DECOMP_BASE (cond)
       && TREE_CODE (DECL_DECOMP_BASE (cond)) == TARGET_EXPR)
     cond = TARGET_EXPR_SLOT (DECL_DECOMP_BASE (cond));
 
@@ -1714,6 +1715,7 @@ finish_switch_cond (tree cond, tree switch_stmt)
         conversion result in a TARGET_EXPR, pick it up from there.  */
       if (DECL_DECOMPOSITION_P (cond)
          && DECL_DECOMP_IS_BASE (cond)
+         && DECL_DECOMP_BASE (cond)
          && TREE_CODE (DECL_DECOMP_BASE (cond)) == TARGET_EXPR)
        cond = TARGET_EXPR_SLOT (DECL_DECOMP_BASE (cond));
       cond = build_expr_type_conversion (WANT_INT | WANT_ENUM, cond, true);
diff --git a/gcc/testsuite/g++.dg/cpp26/decomp11.C b/gcc/testsuite/g++.dg/cpp26/decomp11.C
new file mode 100644 (file)
index 0000000..985f40f
--- /dev/null
@@ -0,0 +1,19 @@
+// PR c++/116113
+// { dg-do compile { target c++11 } }
+// { dg-options "" }
+
+extern int b[];
+
+void
+foo ()
+{
+  auto [a] = b;        // { dg-error "is incomplete" }
+               // { dg-warning "structured bindings only available with" "" { target c++14_down } .-1 }
+  if (a)
+    ;
+  switch (a)
+    {
+    default:
+      break;
+    }
+}
This page took 0.078369 seconds and 5 git commands to generate.