]> gcc.gnu.org Git - gcc.git/commitdiff
[Ada] Crash in tagged type constructor with task components
authorJavier Miranda <miranda@adacore.com>
Sat, 4 Apr 2020 18:21:40 +0000 (14:21 -0400)
committerPierre-Marie de Rodat <derodat@adacore.com>
Tue, 16 Jun 2020 13:07:12 +0000 (09:07 -0400)
2020-06-16  Javier Miranda  <miranda@adacore.com>

gcc/ada/

* sem_prag.adb (Process_Restrictions_Or_Restriction_Warnings):
Code cleanup.

gcc/ada/sem_prag.adb

index 673954acb5bf1c2d72ac894ce4daf106de4f1b10..f3f0affb0cae8061f362967ba10d62a7bf622f4c 100644 (file)
@@ -10694,54 +10694,11 @@ package body Sem_Prag is
                      Add_To_Config_Boolean_Restrictions (No_Elaboration_Code);
                   end if;
 
-               --  Special processing for No_Tasking restriction
+               --  Special processing for No_Tasking restriction placed in
+               --  a configuration pragmas file.
 
-               elsif R_Id = No_Tasking then
-
-                  --  Handle global configuration pragmas
-
-                  if No (Cunit (Main_Unit)) then
-                     Set_Global_No_Tasking;
-
-                  --  Handle package System, which may be loaded by rtsfind as
-                  --  a consequence of loading some other run-time unit.
-
-                  else
-                     declare
-                        C_Node : constant Entity_Id :=
-                                   Cunit (Current_Sem_Unit);
-                        C_Ent  : constant Entity_Id :=
-                                   Cunit_Entity (Current_Sem_Unit);
-                        Loc_Str : constant String :=
-                                    Build_Location_String (Sloc (C_Ent));
-                        Ref_Str : constant String := "system.ads";
-                        Ref_Len : constant Positive := Ref_Str'Length;
-
-                     begin
-                        pragma Assert (Loc_Str'First = 1);
-                        pragma Assert (Loc_Str'First = Ref_Str'First);
-
-                        if Nkind (Unit (C_Node)) = N_Package_Declaration
-                          and then Chars (C_Ent) = Name_System
-
-                           --  Handle child packages named foo-system.ads
-
-                          and then Loc_Str'Length > Ref_Str'Length
-                          and then Loc_Str (Loc_Str'First .. Ref_Len)
-                                     = Ref_Str (Ref_Str'First .. Ref_Len)
-
-                           --  ... and ensure that package System has not
-                           --  been previously loaded. Done to ensure that
-                           --  the above checks do not have any corner case
-                           --  (since they are performed without semantic
-                           --  information).
-
-                          and then not RTU_Loaded (Rtsfind.System)
-                        then
-                           Set_Global_No_Tasking;
-                        end if;
-                     end;
-                  end if;
+               elsif R_Id = No_Tasking and then No (Cunit (Main_Unit)) then
+                  Set_Global_No_Tasking;
                end if;
 
                --  If this is a warning, then set the warning unless we already
This page took 0.105286 seconds and 5 git commands to generate.