[multiple changes]
authorSamuel Tardieu <sam@gcc.gnu.org>
Tue, 29 Apr 2008 21:43:39 +0000 (21:43 +0000)
committerSamuel Tardieu <sam@gcc.gnu.org>
Tue, 29 Apr 2008 21:43:39 +0000 (21:43 +0000)
2008-04-29  Ed Schonberg  <schonberg@adacore.com>

    gcc/ada/
PR ada/35792
* sem_ch3.adb (Find_Type_Name): Refuse completion of an incomplete
tagged type by an untagged protected or task type.

2008-04-29  Samuel Tardieu  <sam@rfc1149.net>

    gcc/testsuite/
PR ada/35792
* gnat.dg/specs/tag2.ads: New.

From-SVN: r134810

gcc/ada/ChangeLog
gcc/ada/sem_ch3.adb
gcc/testsuite/ChangeLog
gcc/testsuite/gnat.dg/specs/tag2.ads [new file with mode: 0644]

index b8ac510d6b53cb857809aab39a02032d665afdb2..f46c7b825f5762f027832c8f270296ad7a8dad9c 100644 (file)
@@ -1,3 +1,9 @@
+2008-04-29  Ed Schonberg  <schonberg@adacore.com>
+
+       PR ada/35792
+       * sem_ch3.adb (Find_Type_Name): Refuse completion of an incomplete
+       tagged type by an untagged protected or task type.
+
 2008-04-28  Eric Botcazou  <ebotcazou@adacore.com>
             Tristan Gingold  <gingold@adacore.com>
 
index 103eb75fbe52a2326ebd96e4ab830c24486707a3..d050d1b0505ba33166e75b060f8d43b18f31f5c7 100644 (file)
@@ -13046,13 +13046,26 @@ package body Sem_Ch3 is
          if Is_Type (Prev)
            and then (Is_Tagged_Type (Prev)
                       or else Present (Class_Wide_Type (Prev)))
-           and then not Nkind_In (N, N_Task_Type_Declaration,
-                                     N_Protected_Type_Declaration)
          then
-            --  The full declaration is either a tagged record or an
-            --  extension otherwise this is an error
+            --  The full declaration is either a tagged type (including
+            --  a synchronized type that implements interfaces) or a
+            --  type extension, otherwise this is an error.
+
+            if Nkind_In (N, N_Task_Type_Declaration,
+                         N_Protected_Type_Declaration)
+            then
+               if No (Interface_List (N))
+                 and then not Error_Posted (N)
+               then
+                  Error_Msg_NE
+                    ("full declaration of } must be a tagged type ", Id, Prev);
+               end if;
+
+            elsif Nkind (Type_Definition (N)) = N_Record_Definition then
+
+               --  Indicate that the previous declaration (tagged incomplete
+               --  or private declaration) requires the same on the full one.
 
-            if Nkind (Type_Definition (N)) = N_Record_Definition then
                if not Tagged_Present (Type_Definition (N)) then
                   Error_Msg_NE
                     ("full declaration of } must be tagged", Prev, Id);
index c12d3823cc395c47072d189d55d935c29924e3a7..9e0aef64c98abff952936662080b1d49bceffc79 100644 (file)
@@ -1,3 +1,8 @@
+2008-04-29  Samuel Tardieu  <sam@rfc1149.net>
+
+       PR ada/35792
+       * gnat.dg/specs/tag2.ads: New.
+
 2008-04-29  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/36078
diff --git a/gcc/testsuite/gnat.dg/specs/tag2.ads b/gcc/testsuite/gnat.dg/specs/tag2.ads
new file mode 100644 (file)
index 0000000..8e09f25
--- /dev/null
@@ -0,0 +1,17 @@
+-- { dg-do compile }
+
+package tag2 is
+   type I is synchronized interface;
+   type T1 is tagged;
+   type T2 is tagged;
+   type T3 is tagged;
+   type T4 is tagged;
+   type T5 is tagged;
+   type T6 is tagged;
+   protected type T1 is end T1; -- { dg-error "must be a tagged type" }
+   task type T2;                -- { dg-error "must be a tagged type" }
+   type T3 is null record;      -- { dg-error "must be tagged" }
+   task type T4 is new I with end;
+   protected type T5 is new I with end;
+   type T6 is tagged null record;
+end tag2;