[COMMITTED] ada: Fix style in declaration of routine for expansion of packed arrays
Checks
Commit Message
From: Piotr Trojanek <trojanek@adacore.com>
Style cleanup.
gcc/ada/
* exp_pakd.adb (Setup_Inline_Packed_Array_Reference): Remove extra
whitespace from the list of parameters.
Tested on x86_64-pc-linux-gnu, committed on master.
---
gcc/ada/exp_pakd.adb | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
@@ -153,11 +153,11 @@ package body Exp_Pakd is
-- reference the corresponding packed array type.
procedure Setup_Inline_Packed_Array_Reference
- (N : Node_Id;
- Atyp : Entity_Id;
- Obj : in out Node_Id;
- Cmask : out Uint;
- Shift : out Node_Id);
+ (N : Node_Id;
+ Atyp : Entity_Id;
+ Obj : in out Node_Id;
+ Cmask : out Uint;
+ Shift : out Node_Id);
-- This procedure performs common processing on the N_Indexed_Component
-- parameter given as N, whose prefix is a reference to a packed array.
-- This is used for the get and set when the component size is 1, 2, 4,
@@ -2472,11 +2472,11 @@ package body Exp_Pakd is
-----------------------------------------
procedure Setup_Inline_Packed_Array_Reference
- (N : Node_Id;
- Atyp : Entity_Id;
- Obj : in out Node_Id;
- Cmask : out Uint;
- Shift : out Node_Id)
+ (N : Node_Id;
+ Atyp : Entity_Id;
+ Obj : in out Node_Id;
+ Cmask : out Uint;
+ Shift : out Node_Id)
is
Loc : constant Source_Ptr := Sloc (N);
PAT : Entity_Id;