diff options
author | Ludovic Brenta <ludovic@ludovic-brenta.org> | 2007-12-07 22:19:22 +0000 |
---|---|---|
committer | Samuel Tardieu <sam@gcc.gnu.org> | 2007-12-07 22:19:22 +0000 |
commit | da746f7720af6d95ad637b0880c49dd7e6655eb5 (patch) | |
tree | 251bd5aced9d9dcdcf2111a829d84b0b867a2f0a /gcc | |
parent | c93d94924ee51e74d63e532b3e631fa34ba058ee (diff) | |
download | gcc-da746f7720af6d95ad637b0880c49dd7e6655eb5.zip gcc-da746f7720af6d95ad637b0880c49dd7e6655eb5.tar.gz gcc-da746f7720af6d95ad637b0880c49dd7e6655eb5.tar.bz2 |
re PR target/34261 (Directed rounding doesn't work on MacOS X)
2007-12-07 Ludovic Brenta <ludovic@ludovic-brenta.org>
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.
From-SVN: r130695
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/ada/mlib-tgt.adb | 4 | ||||
-rw-r--r-- | gcc/ada/mlib-tgt.ads | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 49f226f..08eeab3 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -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 diff --git a/gcc/ada/mlib-tgt.adb b/gcc/ada/mlib-tgt.adb index 9d75838..e7cee9e 100644 --- a/gcc/ada/mlib-tgt.adb +++ b/gcc/ada/mlib-tgt.adb @@ -23,10 +23,6 @@ -- -- ------------------------------------------------------------------------------ --- 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; diff --git a/gcc/ada/mlib-tgt.ads b/gcc/ada/mlib-tgt.ads index e80f166..ad31788 100644 --- a/gcc/ada/mlib-tgt.ads +++ b/gcc/ada/mlib-tgt.ads @@ -24,12 +24,10 @@ ------------------------------------------------------------------------------ -- 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; |