]> gcc.gnu.org Git - gcc.git/commitdiff
c++: loop through array CONSTRUCTOR
authorJason Merrill <jason@redhat.com>
Tue, 20 Sep 2022 20:06:26 +0000 (16:06 -0400)
committerJason Merrill <jason@redhat.com>
Sat, 1 Oct 2022 03:45:08 +0000 (23:45 -0400)
I noticed that we were ignoring all the special rules for when to use a
simple INIT_EXPR for array initialization from a CONSTRUCTOR, because
split_nonconstant_init_1 was also passing 1 to the from_array parameter.
Arguably that's the real bug, but I think we can be flexible.

The test that I noticed this with no longer fails without it.

gcc/cp/ChangeLog:

* init.cc (build_vec_init): Clear from_array for CONSTRUCTOR
initializer.

gcc/cp/init.cc

index a85c30321308f4d84c4077636d89004bfca6f4b0..bf46578c08b1a4c4a5f990c1f3e016da708d8d89 100644 (file)
@@ -4394,6 +4394,10 @@ build_vec_init (tree base, tree maxindex, tree init,
        }
     }
 
+  /* from_array doesn't apply to initialization from CONSTRUCTOR.  */
+  if (init && TREE_CODE (init) == CONSTRUCTOR)
+    from_array = 0;
+
   /* If we have a braced-init-list or string constant, make sure that the array
      is big enough for all the initializers.  */
   bool length_check = (init
@@ -4493,7 +4497,7 @@ build_vec_init (tree base, tree maxindex, tree init,
   /* If initializing one array from another, initialize element by
      element.  We rely upon the below calls to do the argument
      checking.  Evaluate the initializer before entering the try block.  */
-  if (from_array && init && TREE_CODE (init) != CONSTRUCTOR)
+  if (from_array)
     {
       if (lvalue_kind (init) & clk_rvalueref)
        xvalue = true;
This page took 0.076644 seconds and 5 git commands to generate.