diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-22 13:20:17 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-22 13:20:17 +0000 |
commit | 65e31f50b0b8f1ca2c67e2873ac201d28e837182 (patch) | |
tree | ba1a77f937880d077256606fd8983752c417793d /gcc/ada/osint.adb | |
parent | 5f86d0eef9906b51b59a217c7677f27a01bbc9fb (diff) | |
download | gcc-65e31f50b0b8f1ca2c67e2873ac201d28e837182.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@161181 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/osint.adb')
-rw-r--r-- | gcc/ada/osint.adb | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ada/osint.adb b/gcc/ada/osint.adb index 7d16e2a266a..bbce9198784 100644 --- a/gcc/ada/osint.adb +++ b/gcc/ada/osint.adb @@ -23,11 +23,9 @@ -- -- ------------------------------------------------------------------------------ -with Unchecked_Conversion; - -with System.Case_Util; use System.Case_Util; - -with GNAT.HTable; +-- This unit is used by gnatcoll +pragma Warnings (Off, "*is an internal GNAT unit"); +pragma Warnings (Off, "*use * instead"); with Alloc; with Debug; @@ -40,6 +38,12 @@ with Sdefault; use Sdefault; with Table; with Targparm; use Targparm; +with Unchecked_Conversion; + +with System.Case_Util; use System.Case_Util; + +with GNAT.HTable; + package body Osint is Running_Program : Program_Type := Unspecified; |