diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-22 15:20:17 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-22 15:20:17 +0200 |
commit | fa5aa8353877421229443a04c4d9711fb2dd4aa5 (patch) | |
tree | ba1a77f937880d077256606fd8983752c417793d /gcc/ada/osint.ads | |
parent | f6da8aff3dfd442088e586dc69bb7cc5c67167bd (diff) | |
download | gcc-fa5aa8353877421229443a04c4d9711fb2dd4aa5.tar.gz |
[multiple changes]
2010-06-22 Emmanuel Briot <briot@adacore.com>
* fmap.adb, scng.adb, switch-m.ads, sinput-c.adb, opt.ads, output.ads,
tree_io.ads, osint.adb, osint.ads: Use configuration pragmas to prevent
warnings on use of internal GNAT units.
2010-06-22 Jose Ruiz <ruiz@adacore.com>
* s-taprop-vxworks.adb (Set_Priority): Update comments.
2010-06-22 Paul Hilfinger <hilfinger@adacore.com>
* s-rannum.adb: Make stylistic change to remove mystery constant in
Extract_Value. Image_Numeral_Length: new symbolic constant.
2010-06-22 Ed Schonberg <schonberg@adacore.com>
* einfo.ads, einfo.adb: Make Is_Protected_Interface,
Is_Synchronized_Interface, Is_Task_Interface into computable
predicates, to free three flags in entity nodes.
* sem_ch3.adb: Remove setting of these flags.
From-SVN: r161181
Diffstat (limited to 'gcc/ada/osint.ads')
-rw-r--r-- | gcc/ada/osint.ads | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gcc/ada/osint.ads b/gcc/ada/osint.ads index ae827ba286b..08d074a406f 100644 --- a/gcc/ada/osint.ads +++ b/gcc/ada/osint.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2010, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -26,12 +26,16 @@ -- This package contains the low level, operating system routines used in the -- compiler and binder for command line processing and file input output. +-- This unit is used by gnatcoll +pragma Warnings (Off, "*is an internal GNAT unit"); +pragma Warnings (Off, "*use * instead"); + with Namet; use Namet; with Types; use Types; -with System.Storage_Elements; -with System.OS_Lib; use System.OS_Lib; with System; use System; +with System.OS_Lib; use System.OS_Lib; +with System.Storage_Elements; pragma Elaborate_All (System.OS_Lib); -- For the call to function Get_Target_Object_Suffix in the private part @@ -39,9 +43,8 @@ pragma Elaborate_All (System.OS_Lib); package Osint is Multi_Unit_Index_Character : Character := '~'; - -- The character before the index of the unit in a multi-unit source, in - -- ALI and object file names. This is not a constant, because it is changed - -- to '$' on VMS. + -- The character before the index of the unit in a multi-unit source in ALI + -- and object file names. Changed to '$' on VMS. Ada_Include_Path : constant String := "ADA_INCLUDE_PATH"; Ada_Objects_Path : constant String := "ADA_OBJECTS_PATH"; |