Commit a62e6287 by Hristian Kirtchev Committed by Arnaud Charlet

exp_ch9.adb: Minor reformatting.

2017-01-06  Hristian Kirtchev  <kirtchev@adacore.com>

	* exp_ch9.adb: Minor reformatting.

From-SVN: r244143
parent dbf2a2d3
2017-01-06 Hristian Kirtchev <kirtchev@adacore.com>
* exp_ch9.adb: Minor reformatting.
2017-01-06 Tristan Gingold <gingold@adacore.com> 2017-01-06 Tristan Gingold <gingold@adacore.com>
* exp_ch9.ads, exp_ch9.adb (Build_Entry_Names): Remove (unused). * exp_ch9.ads, exp_ch9.adb (Build_Entry_Names): Remove (unused).
......
...@@ -9424,7 +9424,8 @@ package body Exp_Ch9 is ...@@ -9424,7 +9424,8 @@ package body Exp_Ch9 is
-- Create the declaration of the array object. Generate: -- Create the declaration of the array object. Generate:
-- Maxes_Id : aliased Protected_Entry_Queue_Max_Array -- Maxes_Id : aliased constant
-- Protected_Entry_Queue_Max_Array
-- (1 .. Count) := (..., ...); -- (1 .. Count) := (..., ...);
Maxes_Id := Maxes_Id :=
...@@ -9497,9 +9498,9 @@ package body Exp_Ch9 is ...@@ -9497,9 +9498,9 @@ package body Exp_Ch9 is
Make_Object_Declaration (Loc, Make_Object_Declaration (Loc,
Defining_Identifier => Body_Id, Defining_Identifier => Body_Id,
Aliased_Present => True, Aliased_Present => True,
Constant_Present => True,
Object_Definition => Obj_Def, Object_Definition => Obj_Def,
Expression => Expr, Expression => Expr);
Constant_Present => True);
-- A pointer to this array will be placed in the corresponding record -- A pointer to this array will be placed in the corresponding record
-- by its initialization procedure so this needs to be analyzed here. -- by its initialization procedure so this needs to be analyzed here.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment