aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/einfo.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-10-08 15:08:03 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-10-08 15:08:03 +0200
commit40f07b4b4115a45be68ff6032418fa17893785f2 (patch)
tree8371dc9ed8ece70c4cf74806eae0eace83decc59 /gcc/ada/einfo.ads
parentaf31bffbb0630674cfc3cacb2fb21aa6bfd1fb26 (diff)
downloadgcc-40f07b4b4115a45be68ff6032418fa17893785f2.zip
gcc-40f07b4b4115a45be68ff6032418fa17893785f2.tar.gz
gcc-40f07b4b4115a45be68ff6032418fa17893785f2.tar.bz2
[multiple changes]
2010-10-08 Robert Dewar <dewar@adacore.com> * sem_prag.adb (Check_Duplicate_Pragma): Check for entity match * gcc-interface/Make-lang.in: Update dependencies. * einfo.ads: Minor reformatting. 2010-10-08 Ed Schonberg <schonberg@adacore.com> * exp_ch5.adb, sem_ch3.adb, exp_ch7.adb, exp_util.adb, sem_aux.adb, sem_aux.ads, exp_ch4.adb, exp_ch6.adb, sem_ch6.adb, exp_aggr.adb, exp_ch3.adb: Change Is_Inherently_Limited_Type to Is_Immutably_Limited_Type to accord with new RM terminology. * sem_aux.adb (Is_Immutably_Limited_Type): A type that is a descendant of a formal limited private type is not immutably limited in a generic body. From-SVN: r165175
Diffstat (limited to 'gcc/ada/einfo.ads')
-rw-r--r--gcc/ada/einfo.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/einfo.ads b/gcc/ada/einfo.ads
index 5611278..a1034cf 100644
--- a/gcc/ada/einfo.ads
+++ b/gcc/ada/einfo.ads
@@ -2436,7 +2436,7 @@ package Einfo is
-- 4. Setting Component_Size of an array to a bit-packable value
-- 3. Indexing an array with a non-standard enumeration type.
--
--- For records, Is_Packed is always set if Has_Pack_Pragma is set,
+-- For records, Is_Packed is always set if Has_Pragma_Pack is set,
-- and can also be set on its own in a derived type which inherited
-- its packed status.
--
@@ -2455,7 +2455,7 @@ package Einfo is
-- the bit packed case once the array type is frozen.
--
-- Before an array type is frozen, Is_Packed will always be set if
--- Has_Pack_Pragma is set. Before the freeze point, it is not possible
+-- Has_Pragma_Pack is set. Before the freeze point, it is not possible
-- to know the component size, since the component type is not frozen
-- until the array type is frozen. Thus Is_Packed for an array type
-- before it is frozen means that packed is required. Then if it turns