summaryrefslogtreecommitdiff
path: root/gcc/ada/s-auxdec-vms_64.ads
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-01 15:41:01 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2011-08-01 15:41:01 +0000
commitfd62437ba24ad78e46e5e900126e5d9ed930a881 (patch)
tree550db9ff8d0612f31d17865aa56eb329d677f905 /gcc/ada/s-auxdec-vms_64.ads
parent6db2e6e8fe8d3c50eb3d1c55e536de5f8af91ea0 (diff)
downloadgcc-fd62437ba24ad78e46e5e900126e5d9ed930a881.tar.gz
2011-08-01 Ed Schonberg <schonberg@adacore.com>
* sem_ch6.adb (Fully_Conformant_Expressions): handle quantified expressions. 2011-08-01 Arnaud Charlet <charlet@adacore.com> * sem_ch8.adb: Minor code editing. * s-vxwext.adb: Remove trailing space. * freeze.adb, freeze.ads, errout.ads, erroutc.adb: Fix GPLv3 header for consistency with other files. 2011-08-01 Thomas Quinot <quinot@adacore.com> * s-auxdec.ads, s-auxdec-vms_64.ads: Minor reformatting. 2011-08-01 Ed Schonberg <schonberg@adacore.com> * par-ch10.adb: reject parameterized expressions as compilation unit. * sem_ch4.adb: handle properly conditional expression with overloaded then_clause and no else_clause. 2011-08-01 Tristan Gingold <gingold@adacore.com> * s-parame-vms-alpha.ads, s-parame-vms-ia64.ads: Redeclare C_Address like done by System.Aux_DEC. * env.c (__gnat_setenv) [VMS]: Put logicals into LNM$PROCESS table. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177050 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-auxdec-vms_64.ads')
-rw-r--r--gcc/ada/s-auxdec-vms_64.ads26
1 files changed, 12 insertions, 14 deletions
diff --git a/gcc/ada/s-auxdec-vms_64.ads b/gcc/ada/s-auxdec-vms_64.ads
index 202cdbc9857..ea0720dfdb4 100644
--- a/gcc/ada/s-auxdec-vms_64.ads
+++ b/gcc/ada/s-auxdec-vms_64.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1996-2009, Free Software Foundation, Inc. --
+-- Copyright (C) 1996-2010, 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- --
@@ -285,9 +285,9 @@ package System.Aux_DEC is
pragma Import (Intrinsic, Import_Address);
pragma Import (Intrinsic, Import_Largest_Value);
- -- For the following declarations, note that the declaration without
- -- a Retry_Count parameter means to retry infinitely. A value of zero
- -- for the Retry_Count parameter means do not retry.
+ -- For the following declarations, note that the declaration without a
+ -- Retry_Count parameter means to retry infinitely. A value of zero for
+ -- the Retry_Count parameter means do not retry.
-- Interlocked-instruction procedures
@@ -303,8 +303,7 @@ package System.Aux_DEC is
Value : Short_Integer;
end record;
- for Aligned_Word'Alignment use
- Integer'Min (2, Standard'Maximum_Alignment);
+ for Aligned_Word'Alignment use Integer'Min (2, Standard'Maximum_Alignment);
procedure Clear_Interlocked
(Bit : in out Boolean;
@@ -337,9 +336,9 @@ package System.Aux_DEC is
for Aligned_Long_Integer'Alignment use
Integer'Min (8, Standard'Maximum_Alignment);
- -- For the following declarations, note that the declaration without
- -- a Retry_Count parameter mean to retry infinitely. A value of zero
- -- for the Retry_Count means do not retry.
+ -- For the following declarations, note that the declaration without a
+ -- Retry_Count parameter mean to retry infinitely. A value of zero for
+ -- the Retry_Count means do not retry.
procedure Add_Atomic
(To : in out Aligned_Integer;
@@ -407,12 +406,11 @@ package System.Aux_DEC is
Old_Value : out Long_Integer;
Success_Flag : out Boolean);
- type Insq_Status is
- (Fail_No_Lock, OK_Not_First, OK_First);
+ type Insq_Status is (Fail_No_Lock, OK_Not_First, OK_First);
for Insq_Status use
(Fail_No_Lock => -1,
- OK_Not_First => 0,
+ OK_Not_First => 0,
OK_First => +1);
type Remq_Status is (
@@ -423,7 +421,7 @@ package System.Aux_DEC is
for Remq_Status use
(Fail_No_Lock => -1,
- Fail_Was_Empty => 0,
+ Fail_Was_Empty => 0,
OK_Not_Empty => +1,
OK_Empty => +2);
@@ -453,7 +451,7 @@ private
No_Addr : constant Address := Null_Address;
-- An AST_Handler value is from a typing point of view simply a pointer
- -- to a procedure taking a single 64bit parameter. However, this
+ -- to a procedure taking a single 64 bit parameter. However, this
-- is a bit misleading, because the data that this pointer references is
-- highly stylized. See body of System.AST_Handling for full details.