Commit dc017afa by Robert Dewar Committed by Arnaud Charlet

tbuild.ads: Minor reformatting.

2010-10-07  Robert Dewar  <dewar@adacore.com>

	* tbuild.ads: Minor reformatting.

From-SVN: r165091
parent bd67cff1
2010-10-07 Robert Dewar <dewar@adacore.com> 2010-10-07 Robert Dewar <dewar@adacore.com>
* tbuild.ads: Minor reformatting.
2010-10-07 Robert Dewar <dewar@adacore.com>
* gnatcmd.adb, make.adb, prj-nmsc.adb, sem_elab.adb: Minor reformatting * gnatcmd.adb, make.adb, prj-nmsc.adb, sem_elab.adb: Minor reformatting
2010-10-07 Arnaud Charlet <charlet@adacore.com> 2010-10-07 Arnaud Charlet <charlet@adacore.com>
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
-- -- -- --
-- S p e c -- -- S p e c --
-- -- -- --
-- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
-- -- -- --
-- GNAT is free software; you can redistribute it and/or modify it under -- -- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- -- -- terms of the GNU General Public License as published by the Free Soft- --
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
-- -- -- --
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- This package contains various utility procedures to assist in -- This package contains various utility procedures to assist in building
-- building specific types of tree nodes. -- specific types of tree nodes.
with Namet; use Namet; with Namet; use Namet;
with Sinfo; use Sinfo; with Sinfo; use Sinfo;
...@@ -167,14 +167,14 @@ package Tbuild is ...@@ -167,14 +167,14 @@ package Tbuild is
Condition : Node_Id := Empty; Condition : Node_Id := Empty;
Reason : RT_Exception_Code) return Node_Id; Reason : RT_Exception_Code) return Node_Id;
pragma Inline (Make_Raise_Storage_Error); pragma Inline (Make_Raise_Storage_Error);
-- A convenient form of Make_Raise_Storage_Error where the Reason -- A convenient form of Make_Raise_Storage_Error where the Reason is given
-- is given simply as an enumeration value, rather than a Uint code. -- simply as an enumeration value, rather than a Uint code.
function Make_String_Literal function Make_String_Literal
(Sloc : Source_Ptr; (Sloc : Source_Ptr;
Strval : String) return Node_Id; Strval : String) return Node_Id;
-- A convenient form of Make_String_Literal, where the string value -- A convenient form of Make_String_Literal, where the string value is
-- is given as a normal string instead of a String_Id value. -- given as a normal string instead of a String_Id value.
function Make_Temporary function Make_Temporary
(Loc : Source_Ptr; (Loc : Source_Ptr;
...@@ -198,8 +198,8 @@ package Tbuild is ...@@ -198,8 +198,8 @@ package Tbuild is
(Loc : Source_Ptr; (Loc : Source_Ptr;
Check : Name_Id; Check : Name_Id;
Stmts : List_Id) return Node_Id; Stmts : List_Id) return Node_Id;
-- Build a block with a pragma Suppress on 'Check'. Stmts is the -- Build a block with a pragma Suppress on 'Check'. Stmts is the statements
-- statements list that needs protection against the check -- list that needs protection against the check
function New_Constraint_Error (Loc : Source_Ptr) return Node_Id; function New_Constraint_Error (Loc : Source_Ptr) return Node_Id;
-- This function builds a tree corresponding to the Ada statement -- This function builds a tree corresponding to the Ada statement
...@@ -293,8 +293,8 @@ package Tbuild is ...@@ -293,8 +293,8 @@ package Tbuild is
function New_Reference_To function New_Reference_To
(Def_Id : Entity_Id; (Def_Id : Entity_Id;
Loc : Source_Ptr) return Node_Id; Loc : Source_Ptr) return Node_Id;
-- This is like New_Occurrence_Of, but it does not set the Etype field. -- This is like New_Occurrence_Of, but it does not set the Etype field. It
-- It is used from the expander, where Etype fields are generally not set, -- is used from the expander, where Etype fields are generally not set,
-- since they are set when the expanded tree is reanalyzed. -- since they are set when the expanded tree is reanalyzed.
function New_Suffixed_Name function New_Suffixed_Name
...@@ -307,13 +307,13 @@ package Tbuild is ...@@ -307,13 +307,13 @@ package Tbuild is
-- fixed-point type (as passed in Related_Id), and Suffix is "SMALL". -- fixed-point type (as passed in Related_Id), and Suffix is "SMALL".
function OK_Convert_To (Typ : Entity_Id; Expr : Node_Id) return Node_Id; function OK_Convert_To (Typ : Entity_Id; Expr : Node_Id) return Node_Id;
-- Like Convert_To, except that a conversion node is always generated, -- Like Convert_To, except that a conversion node is always generated, and
-- and the Conversion_OK flag is set on this conversion node. -- the Conversion_OK flag is set on this conversion node.
function Unchecked_Convert_To function Unchecked_Convert_To
(Typ : Entity_Id; (Typ : Entity_Id;
Expr : Node_Id) return Node_Id; Expr : Node_Id) return Node_Id;
-- Like Convert_To, but if a conversion is actually needed, constructs -- Like Convert_To, but if a conversion is actually needed, constructs an
-- an N_Unchecked_Type_Conversion node to do the required conversion. -- N_Unchecked_Type_Conversion node to do the required conversion.
end Tbuild; end Tbuild;
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