OSDN Git Service

2007-12-07 Ludovic Brenta <ludovic@ludovic-brenta.org>
authorsam <sam@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Dec 2007 22:19:22 +0000 (22:19 +0000)
committersam <sam@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Dec 2007 22:19:22 +0000 (22:19 +0000)
    gcc/ada/
PR ada/34261
* mlib-tgt.adb, mlib-tgt.ads: Fix comments at the top to reflect
the new implementation of target-specific calls.

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

gcc/ada/ChangeLog
gcc/ada/mlib-tgt.adb
gcc/ada/mlib-tgt.ads

index 49f226f..08eeab3 100644 (file)
@@ -1,3 +1,9 @@
+2007-12-07  Ludovic Brenta  <ludovic@ludovic-brenta.org>
+
+       PR ada/34261
+       * mlib-tgt.adb, mlib-tgt.ads: Fix comments at the top to reflect
+       the new implementation of target-specific calls.
+
 2007-12-07  Olivier Hainque  <hainque@adacore.com>
 
        * decl.c (gnat_to_gnu_entity) <case E_Access_Type>: When computing
index 9d75838..e7cee9e 100644 (file)
 --                                                                          --
 ------------------------------------------------------------------------------
 
---  This is the default version which does not support libraries.
---  All subprograms are dummies, because they are never called,
---  except Support_For_Libraries which returns None.
-
 with MLib.Fil;
 with Prj.Com;
 
index e80f166..ad31788 100644 (file)
 ------------------------------------------------------------------------------
 
 --  This package provides a set of target dependent routines to build
---  static, dynamic and shared libraries.
-
---  There are several versions for the body of this package
-
---  In the default version, libraries are not supported, so function
---  Support_For_Libraries return None.
+--  static, dynamic and shared libraries.  There are several packages
+--  providing the actual routines; this package calls them indirectly
+--  by means of access-to-subprogram values; each target-dependent
+--  package initializes these values in its elaboration block.
 
 with Prj; use Prj;