aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/opt.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/opt.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/opt.ads')
-rw-r--r--gcc/ada/opt.ads7
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/ada/opt.ads b/gcc/ada/opt.ads
index 9319f2d..66af7cd 100644
--- a/gcc/ada/opt.ads
+++ b/gcc/ada/opt.ads
@@ -38,15 +38,14 @@
-- use the Project Manager. These tools include gnatmake, gnatname, the gnat
-- driver, gnatclean, gprbuild and gprclean.
--- This unit is used by gnatcoll
-pragma Warnings (Off, "*is an internal GNAT unit");
-pragma Warnings (Off, "*use * instead");
-
with Hostparm; use Hostparm;
with Types; use Types;
+pragma Warnings (Off);
+-- This package is used also by gnatcoll
with System.Strings; use System.Strings;
with System.WCh_Con; use System.WCh_Con;
+pragma Warnings (On);
package Opt is