aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPiotr Trojanek <trojanek@adacore.com>2020-06-25 15:42:23 +0200
committerPierre-Marie de Rodat <derodat@adacore.com>2020-10-16 03:31:20 -0400
commit2c061483126ebd8e3afdb784f150fa16c677ba14 (patch)
tree11f31ce957ee6f292758d49ebd77f41483b15ca2 /gcc
parent476a8ec4d8ecf3437dc3e78e7de2bd77d34fdbd5 (diff)
downloadgcc-2c061483126ebd8e3afdb784f150fa16c677ba14.zip
gcc-2c061483126ebd8e3afdb784f150fa16c677ba14.tar.gz
gcc-2c061483126ebd8e3afdb784f150fa16c677ba14.tar.bz2
[Ada] Cleanup related to itypes for unconstrained object declaration
gcc/ada/ * sem_ch3.adb (Analyze_Object_Declaration): Limit scope of a local object by hiding it from local subprograms; simplify nested if-then-if-then condition for an Ada 83 restriction. (Array_Type_Declaration): Confirm with assertion when the else branch is executed. (Find_Type_Of_Object): Simplify membership test with a subtype range.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/sem_ch3.adb36
1 files changed, 15 insertions, 21 deletions
diff --git a/gcc/ada/sem_ch3.adb b/gcc/ada/sem_ch3.adb
index f7a85c8..dc276df 100644
--- a/gcc/ada/sem_ch3.adb
+++ b/gcc/ada/sem_ch3.adb
@@ -3644,8 +3644,6 @@ package body Sem_Ch3 is
-- E is set to Expression (N) throughout this routine. When Expression
-- (N) is modified, E is changed accordingly.
- Prev_Entity : Entity_Id := Empty;
-
procedure Check_Dynamic_Object (Typ : Entity_Id);
-- A library-level object with nonstatic discriminant constraints may
-- require dynamic allocation. The declaration is illegal if the
@@ -3921,7 +3919,8 @@ package body Sem_Ch3 is
Saved_IGR : constant Node_Id := Ignored_Ghost_Region;
-- Save the Ghost-related attributes to restore on exit
- Related_Id : Entity_Id;
+ Prev_Entity : Entity_Id := Empty;
+ Related_Id : Entity_Id;
Full_View_Present : Boolean := False;
-- Start of processing for Analyze_Object_Declaration
@@ -4520,7 +4519,7 @@ package body Sem_Ch3 is
end if;
-- Case of initialization present but in error. Set initial
- -- expression as absent (but do not make above complaints)
+ -- expression as absent (but do not make above complaints).
elsif E = Error then
Set_Expression (N, Empty);
@@ -4529,19 +4528,15 @@ package body Sem_Ch3 is
-- Case of initialization present
else
- -- Check restrictions in Ada 83
-
- if not Constant_Present (N) then
+ -- Unconstrained variables not allowed in Ada 83
- -- Unconstrained variables not allowed in Ada 83 mode
-
- if Ada_Version = Ada_83
- and then Comes_From_Source (Object_Definition (N))
- then
- Error_Msg_N
- ("(Ada 83) unconstrained variable not allowed",
- Object_Definition (N));
- end if;
+ if Ada_Version = Ada_83
+ and then not Constant_Present (N)
+ and then Comes_From_Source (Object_Definition (N))
+ then
+ Error_Msg_N
+ ("(Ada 83) unconstrained variable not allowed",
+ Object_Definition (N));
end if;
-- Now we constrain the variable from the initializing expression
@@ -4620,7 +4615,7 @@ package body Sem_Ch3 is
Act_T := Find_Type_Of_Object (Object_Definition (N), N);
end if;
- -- Propagate attributes to full view when needed.
+ -- Propagate attributes to full view when needed
Set_Is_Constr_Subt_For_U_Nominal (Act_T);
@@ -6190,7 +6185,8 @@ package body Sem_Ch3 is
-- Unconstrained array case
- else
+ else pragma Assert (Nkind (Def) = N_Unconstrained_Array_Definition);
+
Set_Ekind (T, E_Array_Type);
Init_Size_Align (T);
Set_Etype (T, T);
@@ -17735,9 +17731,7 @@ package body Sem_Ch3 is
-- Case of an anonymous array subtype
- if Def_Kind in
- N_Constrained_Array_Definition | N_Unconstrained_Array_Definition
- then
+ if Def_Kind in N_Array_Type_Definition then
T := Empty;
Array_Type_Declaration (T, Obj_Def);