diff options
author | Robert Dewar <dewar@adacore.com> | 2006-10-31 18:45:31 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2006-10-31 18:45:31 +0100 |
commit | f28ded01c65008b47ef62f0be2a3e987ec1c5b61 (patch) | |
tree | 851517a370102265cd74b21a6efff0498d5080f6 /gcc/ada/system-solaris-x86.ads | |
parent | ec946d1845c7ed1cb2955a9065c7edd9402882a7 (diff) | |
download | gcc-f28ded01c65008b47ef62f0be2a3e987ec1c5b61.zip gcc-f28ded01c65008b47ef62f0be2a3e987ec1c5b61.tar.gz gcc-f28ded01c65008b47ef62f0be2a3e987ec1c5b61.tar.bz2 |
system-vms_64.ads, [...]: Add pragma Warnings(Off...
2006-10-31 Robert Dewar <dewar@adacore.com>
* system-vms_64.ads, system-darwin-ppc.ads, system-vxworks-x86.ads,
system-linux-hppa.ads, system-hpux-ia64.ads,
system-lynxos-ppc.ads, system-lynxos-x86.ads, system-tru64.ads,
system-vxworks-sparcv9.ads, system-solaris-x86.ads,
system-irix-o32.ads, system-irix-n32.ads, system-hpux.ads,
system-vxworks-m68k.ads, system-vxworks-mips.ads, system-interix.ads,
system-solaris-sparc.ads, system-solaris-sparcv9.ads, system-vms.ads,
system-mingw.ads, system-vms-zcx.ads, system-vxworks-ppc.ads,
system-vxworks-alpha.ads, system.ads: Add pragma Warnings(Off,
Default_Bit_Order) to kill constant condition warnings for references
to this switch.
From-SVN: r118236
Diffstat (limited to 'gcc/ada/system-solaris-x86.ads')
-rw-r--r-- | gcc/ada/system-solaris-x86.ads | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/system-solaris-x86.ads b/gcc/ada/system-solaris-x86.ads index 3f3ed23..d4c7128 100644 --- a/gcc/ada/system-solaris-x86.ads +++ b/gcc/ada/system-solaris-x86.ads @@ -7,7 +7,7 @@ -- S p e c -- -- (x86 Solaris Version) -- -- -- --- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- @@ -88,6 +88,7 @@ package System is type Bit_Order is (High_Order_First, Low_Order_First); Default_Bit_Order : constant Bit_Order := Low_Order_First; + pragma Warnings (Off, Default_Bit_Order); -- kill constant condition warning -- Priority-related Declarations (RM D.1) |