aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/tree_io.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-06-22 15:26:32 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-06-22 15:26:32 +0200
commit9e9df9da7b83a6591d43c5298958dd20db3c6e73 (patch)
treeca47323ccb53d850a727cc7979b3e8dece6d51fc /gcc/ada/tree_io.ads
parentfa5aa8353877421229443a04c4d9711fb2dd4aa5 (diff)
downloadgcc-9e9df9da7b83a6591d43c5298958dd20db3c6e73.zip
gcc-9e9df9da7b83a6591d43c5298958dd20db3c6e73.tar.gz
gcc-9e9df9da7b83a6591d43c5298958dd20db3c6e73.tar.bz2
[multiple changes]
2010-06-22 Arnaud Charlet <charlet@adacore.com> * fmap.adb, opt.ads, osint.adb, osint.ads, output.ads, scng.adb, sinput-c.adb, switch-m.ads, tree_io.ads: Use simpler form of Warnings Off/On. 2010-06-22 Thomas Quinot <quinot@adacore.com> * einfo.ads: Minor reformatting. 2010-06-22 Javier Miranda <miranda@adacore.com> * exp_disp.adb (Expand_Interface_Thunk): Do not generate thunk of eliminated primitives. (Make_DT): Avoid referencing eliminated primitives. (Register_Primitive): Do not register eliminated primitives in the dispatch table. Required to add this functionality when the program is compiled without static dispatch tables (-gnatd.t) From-SVN: r161183
Diffstat (limited to 'gcc/ada/tree_io.ads')
-rw-r--r--gcc/ada/tree_io.ads11
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/ada/tree_io.ads b/gcc/ada/tree_io.ads
index f70c92f..0cb17fe 100644
--- a/gcc/ada/tree_io.ads
+++ b/gcc/ada/tree_io.ads
@@ -34,14 +34,13 @@
-- create and close routines are elsewhere (in Osint in the compiler, and in
-- the tree read driver for the tree read interface).
--- This unit is used by gnatcoll
-pragma Warnings (Off, "*is an internal GNAT unit");
-pragma Warnings (Off, "*use * instead");
+with Types; use Types;
+with System; use System;
-with Types; use Types;
-
-with System; use System;
+pragma Warnings (Off);
+-- This package is used also by gnatcoll
with System.OS_Lib; use System.OS_Lib;
+pragma Warnings (On);
package Tree_IO is