inline.adb, [...]: Minor reformatting.

2014-07-30  Robert Dewar  <dewar@adacore.com>

	* inline.adb, exp_ch4.adb, sinput.adb, sem_ch6.adb, sem_ch13.adb:
	Minor reformatting.

From-SVN: r213244
This commit is contained in:
Robert Dewar 2014-07-30 10:41:12 +00:00 committed by Arnaud Charlet
parent 4e6768ab35
commit 662c2ad475
6 changed files with 17 additions and 14 deletions

View File

@ -1,3 +1,8 @@
2014-07-30 Robert Dewar <dewar@adacore.com>
* inline.adb, exp_ch4.adb, sinput.adb, sem_ch6.adb, sem_ch13.adb:
Minor reformatting.
2014-07-30 Hristian Kirtchev <kirtchev@adacore.com>
* aspects.ads Add a comment explaining why SPARK 2014 aspects are

View File

@ -769,9 +769,8 @@ package body Exp_Ch4 is
Obj_Ref :=
Unchecked_Convert_To (Etype (Obj_Ref),
Make_Function_Call (Loc,
Name =>
New_Occurrence_Of
(RTE (RE_Base_Address), Loc),
Name =>
New_Occurrence_Of (RTE (RE_Base_Address), Loc),
Parameter_Associations => New_List (
Unchecked_Convert_To (RTE (RE_Address),
New_Copy_Tree (Obj_Ref)))));

View File

@ -3620,13 +3620,13 @@ package body Inline is
while Present (F) loop
if Present (Renamed_Object (F)) then
-- If expander is active, it's an error to try to inline a
-- If expander is active, it is an error to try to inline a
-- recursive program. In GNATprove mode, just indicate that
-- the inlining will not happen.
if Expander_Active then
Error_Msg_N ("cannot inline call to recursive subprogram", N);
Error_Msg_N
("cannot inline call to recursive subprogram", N);
else
Cannot_Inline
("cannot inline call to recursive subprogram?", N, Subp);

View File

@ -1186,7 +1186,7 @@ package body Sem_Ch13 is
procedure Analyze_Aspect_Specifications (N : Node_Id; E : Entity_Id) is
procedure Decorate (Asp : Node_Id; Prag : Node_Id);
-- Establish the linkages between an aspect and its corresponding
-- Establish linkages between an aspect and its corresponding
-- pragma.
procedure Insert_After_SPARK_Mode
@ -1195,9 +1195,8 @@ package body Sem_Ch13 is
Decls : List_Id);
-- Subsidiary to the analysis of aspects Abstract_State, Initializes,
-- Initial_Condition and Refined_State. Insert node Prag before node
-- Ins_Nod. If Ins_Nod denotes pragma SPARK_Mode, then SPARK_Mode is
-- skipped. Decls is the associated declarative list where Prag is to
-- reside.
-- Ins_Nod. If Ins_Nod is for pragma SPARK_Mode, then skip SPARK_Mode.
-- Decls is the associated declarative list where Prag is to reside.
procedure Insert_Pragma (Prag : Node_Id);
-- Subsidiary to the analysis of aspects Attach_Handler, Contract_Cases,

View File

@ -2972,10 +2972,10 @@ package body Sem_Ch6 is
then
declare
Body_Spec : constant Node_Id :=
Copy_Separate_Tree (Specification (N));
Copy_Separate_Tree (Specification (N));
New_Decl : constant Node_Id :=
Make_Subprogram_Declaration
(Loc, Copy_Separate_Tree (Specification (N)));
Make_Subprogram_Declaration (Loc,
Copy_Separate_Tree (Specification (N)));
begin
Insert_Before (N, New_Decl);

View File

@ -308,7 +308,7 @@ package body Sinput is
function Comes_From_Inlined_Body (S : Source_Ptr) return Boolean is
SIE : Source_File_Record renames
Source_File.Table (Get_Source_File_Index (S));
Source_File.Table (Get_Source_File_Index (S));
begin
return SIE.Inlined_Body;
end Comes_From_Inlined_Body;