+2017-01-06 Hristian Kirtchev <kirtchev@adacore.com>
+
+ * exp_ch9.adb: Minor reformatting.
+
2017-01-06 Tristan Gingold <gingold@adacore.com>
* exp_ch9.ads, exp_ch9.adb (Build_Entry_Names): Remove (unused).
-- Create the declaration of the array object. Generate:
- -- Maxes_Id : aliased Protected_Entry_Queue_Max_Array
- -- (1 .. Count) := (..., ...);
+ -- Maxes_Id : aliased constant
+ -- Protected_Entry_Queue_Max_Array
+ -- (1 .. Count) := (..., ...);
Maxes_Id :=
Make_Defining_Identifier (Loc,
Make_Object_Declaration (Loc,
Defining_Identifier => Body_Id,
Aliased_Present => True,
+ Constant_Present => True,
Object_Definition => Obj_Def,
- Expression => Expr,
- Constant_Present => True);
+ Expression => Expr);
-- A pointer to this array will be placed in the corresponding record
-- by its initialization procedure so this needs to be analyzed here.