aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRobert Dewar <dewar@adacore.com>2008-05-26 11:40:39 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2008-05-26 11:40:39 +0200
commite23fbee49be46ac7f2627a99f8f06ca9d204b1ef (patch)
treee7dbcecc468f6a9e249f9322ba300359330802e2 /gcc
parent1b762d7b0b7b32700e60e895992d3dbbba80b10b (diff)
downloadgcc-e23fbee49be46ac7f2627a99f8f06ca9d204b1ef.zip
gcc-e23fbee49be46ac7f2627a99f8f06ca9d204b1ef.tar.gz
gcc-e23fbee49be46ac7f2627a99f8f06ca9d204b1ef.tar.bz2
osint.ads: Minor reformatting
2008-05-26 Robert Dewar <dewar@adacore.com> * osint.ads: Minor reformatting From-SVN: r135901
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/osint.ads30
1 files changed, 15 insertions, 15 deletions
diff --git a/gcc/ada/osint.ads b/gcc/ada/osint.ads
index f2aed1e..d98588b 100644
--- a/gcc/ada/osint.ads
+++ b/gcc/ada/osint.ads
@@ -173,9 +173,8 @@ package Osint is
(Wildcard_Host_File : String;
Only_Dirs : Boolean) return String_Access_List_Access;
-- Expand a wildcard host syntax file or directory specification (e.g. on
- -- a VMS host, any file or directory spec that contains:
- -- "*", or "%", or "...")
- -- and return a list of valid Unix syntax file or directory specs.
+ -- a VMS host, any file or directory spec that contains: "*", or "%", or
+ -- "...") and return a list of valid Unix syntax file or directory specs.
-- If Only_Dirs is True, then only return directories.
function To_Canonical_Dir_Spec
@@ -369,10 +368,10 @@ package Osint is
-- without any directory information. The implementation is responsible
-- for searching for the file in the appropriate directories.
--
- -- Note the special case that if the file name is gnat.adc, then the
- -- search for the file is done ONLY in the directory corresponding to
- -- the current compilation environment, i.e. in the same directory
- -- where the ali and object files will be written.
+ -- Note the special case that if the file name is gnat.adc, then the search
+ -- for the file is done ONLY in the directory corresponding to the current
+ -- compilation environment, i.e. in the same directory where the ali and
+ -- object files will be written.
function Full_Source_Name return File_Name_Type;
function Current_Source_File_Stamp return Time_Stamp_Type;
@@ -508,14 +507,15 @@ package Osint is
(Source_File : File_Name_Type;
Munit_Index : Nat := 0) return File_Name_Type;
-- Given the name of a source file, returns the name of the corresponding
- -- library information file. This may be the name of the object file, or
- -- of a separate file used to store the library information. In either case
- -- the returned result is suitable for use in a call to Read_Library_Info.
- -- The Munit_Index is the unit index in multiple unit per file mode, or
- -- zero in normal single unit per file mode (used to add ~nnn suffix).
- -- Note: this subprogram is in this section because it is used by the
- -- compiler to determine the proper library information names to be placed
- -- in the generated library information file.
+ -- library information file. This may be the name of the object file or of
+ -- a separate file used to store the library information. In the current
+ -- implementation, a separate file (the ALI file) is always used. In either
+ -- case the returned result is suitable for calling Read_Library_Info. The
+ -- Munit_Index is the unit index in multiple unit per file mode, or zero in
+ -- normal single unit per file mode (used to add ~nnn suffix). Note: this
+ -- subprogram is in this section because it is used by the compiler to
+ -- determine the proper library information names to be placed in the
+ -- generated library information file.
-----------------
-- Termination --