re PR ada/82127 (gnat.dg/specs/constructor.ads FAILs)
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 7 Sep 2017 15:33:29 +0000 (15:33 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 7 Sep 2017 15:33:29 +0000 (15:33 +0000)
PR ada/82127
* gcc-interface/decl.c (copy_and_substitute_in_layout): Put the fields
in order of increasing position in more cases.

From-SVN: r251846

gcc/ada/ChangeLog
gcc/ada/gcc-interface/decl.c

index eb6fe7a..94224d6 100644 (file)
@@ -1,3 +1,9 @@
+2017-09-07  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR ada/82127
+       * gcc-interface/decl.c (copy_and_substitute_in_layout): Put the fields
+       in order of increasing position in more cases.
+
 2017-09-07  Yannick Moy  <moy@adacore.com>
 
        * a-exetim-mingw.ads: Add contract Global=>null
index 8514d9a..baa9259 100644 (file)
@@ -9530,12 +9530,10 @@ copy_and_substitute_in_layout (Entity_Id gnat_new_type,
          save_gnu_tree (gnat_field, gnu_field, false);
       }
 
-  /* If there is a variant list, a selected variant and the fields all have a
+  /* If there is no variant list or a selected variant and the fields all have
      constant position, put them in order of increasing position to match that
-     of constant CONSTRUCTORs.  Likewise if there is no variant list but a REP
-     part, since the latter has been flattened in the process.  */
-  if ((gnu_variant_list.exists () ? selected_variant : gnu_rep_part != NULL)
-      && all_constant_pos)
+     of constant CONSTRUCTORs.  */
+  if ((!gnu_variant_list.exists () || selected_variant) && all_constant_pos)
     {
       const int len = list_length (gnu_field_list);
       tree *field_arr = XALLOCAVEC (tree, len), t = gnu_field_list;