Code cleanup.
gcc/ada/ChangeLog:
* exp_aggr.adb (Case_Bounds): Fix indentation.
* sem_case.adb (Choice_Bounds): Likewise.
* libgnat/s-dourea.ads (Duuble_T): Likewise.
* libgnat/s-excmac__arm.ads (Cleanup_Cache_Type): Likewise.
package body Exp_Aggr is
type Case_Bounds is record
- Choice_Lo : Node_Id;
- Choice_Hi : Node_Id;
- Choice_Node : Node_Id;
+ Choice_Lo : Node_Id;
+ Choice_Hi : Node_Id;
+ Choice_Node : Node_Id;
end record;
type Case_Table_Type is array (Nat range <>) of Case_Bounds;
pragma Pure;
type Double_T is record
- Hi, Lo : Num;
+ Hi, Lo : Num;
end record;
function To_Double (N : Num) return Double_T is ((Hi => N, Lo => 0.0));
end record;
type Cleanup_Cache_Type is record
- Bitpattern : uint32_t_array (0 .. 3);
+ Bitpattern : uint32_t_array (0 .. 3);
end record;
type Pr_Cache_Type is record
package body Sem_Case is
type Choice_Bounds is record
- Lo : Node_Id;
- Hi : Node_Id;
- Node : Node_Id;
+ Lo : Node_Id;
+ Hi : Node_Id;
+ Node : Node_Id;
end record;
-- Represent one choice bounds entry with Lo and Hi values, Node points
-- to the choice node itself.