diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-31 17:45:31 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-31 17:45:31 +0000 |
commit | 46dada5c28c04a5793be597987787f83dc62131c (patch) | |
tree | 851517a370102265cd74b21a6efff0498d5080f6 /gcc/ada/system-lynxos-ppc.ads | |
parent | 4503aa6e08e282190851174dcb3ebbb90d509d85 (diff) | |
download | gcc-46dada5c28c04a5793be597987787f83dc62131c.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118236 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/system-lynxos-ppc.ads')
-rw-r--r-- | gcc/ada/system-lynxos-ppc.ads | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ada/system-lynxos-ppc.ads b/gcc/ada/system-lynxos-ppc.ads index 3329bc13a63..d380eb1568a 100644 --- a/gcc/ada/system-lynxos-ppc.ads +++ b/gcc/ada/system-lynxos-ppc.ads @@ -7,7 +7,7 @@ -- S p e c -- -- (LynxOS PPC 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 := High_Order_First; + pragma Warnings (Off, Default_Bit_Order); -- kill constant condition warning -- Priority-related Declarations (RM D.1) @@ -96,7 +97,7 @@ package System is -- The standard (Rm 13.7) requires that Default_Priority has the value: - -- (Priority'First + Priority'Last) / 2. + -- (Priority'First + Priority'Last) / 2 -- To allow an appropriate value for Default_Priority and expose a useful -- range of priorities to the user, we use a range of 0 .. 34 for subtype |