[multiple changes]
authorArnaud Charlet <charlet@gcc.gnu.org>
Fri, 22 May 2015 10:42:23 +0000 (12:42 +0200)
committerArnaud Charlet <charlet@gcc.gnu.org>
Fri, 22 May 2015 10:42:23 +0000 (12:42 +0200)
2015-05-22  Arnaud Charlet  <charlet@adacore.com>

* osint-c.adb, osint-c.ads (Set_File_Name): Move back to spec.

2015-05-22  Pascal Obry  <obry@adacore.com>

* prj-util.adb: Minor comment editing.

From-SVN: r223545

gcc/ada/ChangeLog
gcc/ada/osint-c.adb
gcc/ada/osint-c.ads
gcc/ada/prj-util.adb

index 314aeffd262da92ac8034454639c9434c5f5c3fa..cdc6c04762562558652b8b79137278d0e6d0b058 100644 (file)
@@ -1,3 +1,11 @@
+2015-05-22  Arnaud Charlet  <charlet@adacore.com>
+
+       * osint-c.adb, osint-c.ads (Set_File_Name): Move back to spec.
+
+2015-05-22  Pascal Obry  <obry@adacore.com>
+
+       * prj-util.adb: Minor comment editing.
+
 2015-05-22  Pascal Obry  <obry@adacore.com>
 
        * makeutl.ads (In_Place_Option): New constant.
index 6f53ae366e83cd508e3b5d49d97665e8413a530a..33e0a92a13922b89b0aa75a6314a283919236312 100644 (file)
@@ -45,13 +45,6 @@ package body Osint.C is
    --  output file and Suffix is the desired suffix (dg/rep/xxx for debug/
    --  repinfo/list file where xxx is specified extension.
 
-   procedure Set_File_Name (Ext : String);
-   --  Sets a default file name from the main compiler source name. Ext is
-   --  the extension, e.g. "ali" for a library information file. Used by
-   --  Create_Output_Library_Info, and by the version of Read_Library_Info that
-   --  takes a default file name, and also by Create_C_File and Create_H_File.
-   --  The name is in Name_Buffer (with length in Name_Len) on return.
-
    ------------------
    -- Close_C_File --
    ------------------
index 550d4e58a71ba7b9df4d80ff3e375dcd692f9aea..177d1f15ffb3c095ae6b4663c7d91e1cf46444db 100644 (file)
@@ -127,6 +127,11 @@ package Osint.C is
    --  returned by Next_Main_Source) for appending. This is used to append
    --  the globals computed in flow analysis in gnatprove mode.
 
+   procedure Set_File_Name (Ext : String);
+   --  Sets a default file name from the main compiler source name. Ext is
+   --  the extension, e.g. "ali" for a library information file.
+   --  The name is in Name_Buffer (with length in Name_Len) on return.
+
    procedure Write_Library_Info (Info : String);
    --  Writes the contents of the referenced string to the library information
    --  file for the main source file currently being compiled (i.e. the file
index 77e26d62f63fa8b512dab1c49e36b343fdd81abb..3f3b358311e6c32c212fcef84615d73ea52e05fa 100644 (file)
@@ -806,7 +806,7 @@ package body Prj.Util is
 
    function Relative_Path (Pathname : String; To : String) return String is
       function Ensure_Directory (Path : String) return String;
-      --  Function spec must be commented ???
+      --  Returns Path with an added directory separator if needed
 
       ----------------------
       -- Ensure_Directory --