OSDN Git Service

2008-05-26 Robert Dewar <dewar@adacore.com>
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 26 May 2008 09:40:39 +0000 (09:40 +0000)
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 26 May 2008 09:40:39 +0000 (09:40 +0000)
* osint.ads: Minor reformatting

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135901 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ada/osint.ads

index f2aed1e..d98588b 100644 (file)
@@ -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 --