+2016-04-20 Hristian Kirtchev <kirtchev@adacore.com>
+
+ * s-imgllu.adb, sem_util.adb, s-imgint.adb, s-imguns.adb,
+ s-imglli.adb: Minor reformatting.
+
2016-04-20 Hristian Kirtchev <kirtchev@adacore.com>
* sem_res.adb (Rewrite_Renamed_Operator): Do not rewrite the
package body System.Img_Int is
procedure Set_Digits
- (T : Integer; S : in out String; P : in out Natural);
+ (T : Integer;
+ S : in out String;
+ P : in out Natural);
-- Set digits of absolute value of T, which is zero or negative. We work
-- with the negative of the value so that the largest negative number is
-- not a special case.
----------------
procedure Set_Digits
- (T : Integer; S : in out String; P : in out Natural) is
+ (T : Integer;
+ S : in out String;
+ P : in out Natural)
+ is
begin
if T <= -10 then
Set_Digits (T / 10, S, P);
procedure Set_Image_Integer
(V : Integer;
S : in out String;
- P : in out Natural) is
+ P : in out Natural)
+ is
begin
if V >= 0 then
Set_Digits (-V, S, P);
package body System.Img_LLI is
procedure Set_Digits
- (T : Long_Long_Integer; S : in out String; P : in out Natural);
+ (T : Long_Long_Integer;
+ S : in out String;
+ P : in out Natural);
-- Set digits of absolute value of T, which is zero or negative. We work
-- with the negative of the value so that the largest negative number is
-- not a special case.
----------------
procedure Set_Digits
- (T : Long_Long_Integer; S : in out String; P : in out Natural) is
+ (T : Long_Long_Integer;
+ S : in out String;
+ P : in out Natural)
+ is
begin
if T <= -10 then
Set_Digits (T / 10, S, P);
procedure Set_Image_Long_Long_Unsigned
(V : Long_Long_Unsigned;
S : in out String;
- P : in out Natural) is
+ P : in out Natural)
+ is
begin
if V >= 10 then
Set_Image_Long_Long_Unsigned (V / 10, S, P);
procedure Set_Image_Unsigned
(V : Unsigned;
S : in out String;
- P : in out Natural) is
+ P : in out Natural)
+ is
begin
if V >= 10 then
Set_Image_Unsigned (V / 10, S, P);
and then Present (Corresponding_Spec_Of_Stub (P))
then
U := Corresponding_Spec_Of_Stub (P);
- elsif Nkind (P) = N_Subprogram_Renaming_Declaration
- then
+
+ elsif Nkind (P) = N_Subprogram_Renaming_Declaration then
U := Corresponding_Spec (P);
end if;