decl.c (components_to_record): Add special case for single field with representation...
authorEric Botcazou <ebotcazou@adacore.com>
Sun, 27 Mar 2016 09:57:36 +0000 (09:57 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sun, 27 Mar 2016 09:57:36 +0000 (09:57 +0000)
* gcc-interface/decl.c (components_to_record): Add special case for
single field with representation clause at offset 0.

From-SVN: r234494

gcc/ada/ChangeLog
gcc/ada/gcc-interface/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/specs/double_record_extension3.ads [new file with mode: 0644]

index e915dd57c8168b41da3706597a621a465d22dd13..9faedf15b7a79a5d8ca72bf92ebcad909ba65f47 100644 (file)
@@ -1,3 +1,8 @@
+2016-03-27  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gcc-interface/decl.c (components_to_record): Add special case for     
+       single field with representation clause at offset 0.
+
 2016-03-16  Svante Signell  <svante.signell@gmail.com>
 
        * gcc-interface/Makefile.in: Add support for x86 GNU/Hurd.
index 4b0ce2824c457dff6c4f3cdedc8e7bb6c182a1d3..ad8452810d49a04d8f1e5ef199b714829cd31fc5 100644 (file)
@@ -7606,6 +7606,23 @@ components_to_record (tree gnu_record_type, Node_Id gnat_component_list,
   if (p_gnu_rep_list && gnu_rep_list)
     *p_gnu_rep_list = chainon (*p_gnu_rep_list, gnu_rep_list);
 
+  /* If only one field has a rep clause and it starts at 0, put back the field
+     at the head of the regular field list.  This will avoid creating a useless
+     REP part below and deal with the annoying case of an extension of a record
+     with variable size and rep clause, for which the _Parent field is forced
+     at offset 0 and has variable size, which we do not support below.  */
+  else if (gnu_rep_list
+          && !DECL_CHAIN (gnu_rep_list)
+          && !variants_have_rep
+          && first_free_pos
+          && integer_zerop (first_free_pos)
+          && integer_zerop (bit_position (gnu_rep_list)))
+    {
+      DECL_CHAIN (gnu_rep_list) = gnu_field_list;
+      gnu_field_list = gnu_rep_list;
+      gnu_rep_list = NULL_TREE;
+    }
+
   /* Otherwise, sort the fields by bit position and put them into their own
      record, before the others, if we also have fields without rep clause.  */
   else if (gnu_rep_list)
index a5f548f68dbe4e7fc277f4790c475849df8d4546..44f023f24274834c446dcfb3a79d0e3f77107fc1 100644 (file)
@@ -1,3 +1,7 @@
+2016-03-27  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gnat.dg/specs/double_record_extension3.ads: New test.
+
 2016-03-25  Richard Henderson  <rth@redhat.com>
 
        PR target/70120
diff --git a/gcc/testsuite/gnat.dg/specs/double_record_extension3.ads b/gcc/testsuite/gnat.dg/specs/double_record_extension3.ads
new file mode 100644 (file)
index 0000000..de53655
--- /dev/null
@@ -0,0 +1,22 @@
+-- { dg-do compile }
+
+package Double_Record_Extension3 is
+
+   type Rec1 is tagged record
+      Id : Integer;
+   end record;
+
+   for Rec1 use record
+      Id at 8 range 0 .. 31;
+   end record;
+
+   type Rec2 (Size : Integer) is new Rec1 with record
+      Data : String (1 .. Size);
+   end record;
+
+   type Rec3 is new Rec2 (Size => 128) with record
+      Valid : Boolean;
+   end record;
+
+end Double_Record_Extension3;
+