summaryrefslogtreecommitdiff
path: root/gcc/ada/a-direct.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-01 10:01:31 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-08-01 10:01:31 +0000
commitab52745761e1e84fbe633c46dce875cb34112984 (patch)
tree52f3a096a08f6e10ff730078081414d84efcabb0 /gcc/ada/a-direct.ads
parentb23d813cab02e49f8145577771a7bcb5ea50e733 (diff)
downloadgcc-ab52745761e1e84fbe633c46dce875cb34112984.tar.gz
2014-08-01 Arnaud Charlet <charlet@adacore.com>
* exp_attr.adb (Is_Inline_Floating_Point_Attribute): Restore more completely previous code since only GCC back-ends are prepared to handle e.g. 'Machine attribute. * targparm.adb, targparm.ads: Remove remaining refs and handling of OpenVMS_On_Target, VAX_Float_On_Target and RTX_RTSS_Kernel_Module_On_Target. * hostparm.ads (OpenVMS, Max_Debug_Name_Length): Removed, no longer used. 2014-08-01 Robert Dewar <dewar@adacore.com> * exp_dist.adb, exp_attr.adb: Minor reformatting. * sem_ch3.adb, mlib-tgt-specific-hpux.adb, a-direct.ads, a-synbar-posix.adb, exp_ch9.adb, sem_ch10.adb, sem_prag.adb, sem_ch12.adb, sem.ads, sem_res.adb, s-exctra.adb, s-soflin.ads, g-alveop.ads, sem_ch8.adb, vxaddr2line.adb, sem_cat.ads: Remove improper use of shall. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213440 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-direct.ads')
-rw-r--r--gcc/ada/a-direct.ads20
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/ada/a-direct.ads b/gcc/ada/a-direct.ads
index 9e2f880c4a8..a308c004925 100644
--- a/gcc/ada/a-direct.ads
+++ b/gcc/ada/a-direct.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 2004-2010, Free Software Foundation, Inc. --
+-- Copyright (C) 2004-2014, Free Software Foundation, Inc. --
-- --
-- This specification is derived for use with GNAT from AI-00248, which is --
-- expected to be a part of a future expected revised Ada Reference Manual. --
@@ -81,7 +81,7 @@ package Ada.Directories is
function Current_Directory return String;
-- Returns the full directory name for the current default directory. The
- -- name returned shall be suitable for a future call to Set_Directory.
+ -- name returned must be suitable for a future call to Set_Directory.
-- The exception Use_Error is propagated if a default directory is not
-- supported by the external environment.
@@ -121,15 +121,15 @@ package Ada.Directories is
-- Creates zero or more directories with name New_Directory. Each
-- non-existent directory named by New_Directory is created. For example,
-- on a typical Unix system, Create_Path ("/usr/me/my"); would create
- -- directory "me" in directory "usr", then create directory "my" in
- -- directory "me". The Form can be used to give system-dependent
+ -- directory "me" in directory "usr", then create directory "my"
+ -- in directory "me". The Form can be used to give system-dependent
-- characteristics of the directory; the interpretation of the Form
-- parameter is implementation-defined. A null string for Form specifies
-- the use of the default options of the implementation of the new
-- directory. The exception Name_Error is propagated if the string given
- -- as New_Directory does not allow the identification of any directory.
- -- The exception Use_Error is propagated if the external environment does
- -- not support the creation of any directories with the given name (in the
+ -- as New_Directory does not allow the identification of any directory. The
+ -- exception Use_Error is propagated if the external environment does not
+ -- support the creation of any directories with the given name (in the
-- absence of Name_Error) and form.
--
-- The Form parameter is ignored
@@ -139,9 +139,9 @@ package Ada.Directories is
-- all of its contents (possibly including other directories) are deleted.
-- The exception Name_Error is propagated if the string given as Directory
-- does not identify an existing directory. The exception Use_Error is
- -- propagated if the external environment does not support the deletion of
- -- the directory or some portion of its contents with the given name (in
- -- the absence of Name_Error). If Use_Error is propagated, it is
+ -- propagated if the external environment does not support the deletion
+ -- of the directory or some portion of its contents with the given name
+ -- (in the absence of Name_Error). If Use_Error is propagated, it is
-- unspecified if a portion of the contents of the directory are deleted.
procedure Delete_File (Name : String);