diff options
author | Robert Dewar <dewar@adacore.com> | 2007-09-13 12:52:18 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2007-09-13 14:52:18 +0200 |
commit | 160c50657b368002eddc1f77b45d824f3066848c (patch) | |
tree | 81ff246beb25ab2fa5569833232ff3eb42cb7d87 /gcc/ada/a-elchha.adb | |
parent | 9a6dfb473994b6bfb33bfb7d0c8c3a6a5775ca34 (diff) | |
download | gcc-160c50657b368002eddc1f77b45d824f3066848c.zip gcc-160c50657b368002eddc1f77b45d824f3066848c.tar.gz gcc-160c50657b368002eddc1f77b45d824f3066848c.tar.bz2 |
Implement pragma Compiler_Unit and adds it to relevant library units.
From-SVN: r128461
Diffstat (limited to 'gcc/ada/a-elchha.adb')
-rw-r--r-- | gcc/ada/a-elchha.adb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/a-elchha.adb b/gcc/ada/a-elchha.adb index fabd3ff..41ca1f5 100644 --- a/gcc/ada/a-elchha.adb +++ b/gcc/ada/a-elchha.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2003-2006, Free Software Foundation, Inc. -- +-- Copyright (C) 2003-2007, 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- -- @@ -33,6 +33,10 @@ -- Default version for most targets +pragma Warnings (Off); +pragma Compiler_Unit; +pragma Warnings (On); + with System.Standard_Library; use System.Standard_Library; -- Used for Adafinal |