aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGary Dismukes <dismukes@adacore.com>2016-07-04 10:25:35 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2016-07-04 12:25:35 +0200
commit607114db6a0ae4c23ca0937cb1744f7110c6cd36 (patch)
tree265397018d172e8a113a6083247052fa6c5731d4 /gcc
parentc308e7620eccfbb8f0b5859aab351e3192d761c1 (diff)
downloadgcc-607114db6a0ae4c23ca0937cb1744f7110c6cd36.zip
gcc-607114db6a0ae4c23ca0937cb1744f7110c6cd36.tar.gz
gcc-607114db6a0ae4c23ca0937cb1744f7110c6cd36.tar.bz2
sem_type.adb, [...]: Minor reformatting and typo fix.
2016-07-04 Gary Dismukes <dismukes@adacore.com> * sem_type.adb, einfo.ads, freeze.adb, exp_ch6.adb: Minor reformatting and typo fix. From-SVN: r237966
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ada/ChangeLog5
-rw-r--r--gcc/ada/einfo.ads10
-rw-r--r--gcc/ada/exp_ch6.adb8
-rw-r--r--gcc/ada/freeze.adb8
-rw-r--r--gcc/ada/sem_type.adb2
5 files changed, 19 insertions, 14 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 251435f..708b629 100644
--- a/gcc/ada/ChangeLog
+++ b/gcc/ada/ChangeLog
@@ -1,3 +1,8 @@
+2016-07-04 Gary Dismukes <dismukes@adacore.com>
+
+ * sem_type.adb, einfo.ads, freeze.adb, exp_ch6.adb: Minor reformatting
+ and typo fix.
+
2016-07-04 Hristian Kirtchev <kirtchev@adacore.com>
* sem_ch3.adb, sem_type.adb, sem_ch12.adb, xref_lib.adb,
diff --git a/gcc/ada/einfo.ads b/gcc/ada/einfo.ads
index 3a2d382..e2a8d61 100644
--- a/gcc/ada/einfo.ads
+++ b/gcc/ada/einfo.ads
@@ -2288,7 +2288,7 @@ package Einfo is
-- Is_Bit_Packed_Array (Flag122) [implementation base type only]
-- Defined in all entities. This flag is set for a packed array type that
--- is bit packed (i.e. the component size is known by the front end and
+-- is bit-packed (i.e. the component size is known by the front end and
-- is in the range 1-7, 9-15, 17-31, or 33-63). Is_Packed is always set
-- if Is_Bit_Packed_Array is set, but it is possible for Is_Packed to be
-- set without Is_Bit_Packed_Array if the component size is not known by
@@ -2907,7 +2907,7 @@ package Einfo is
-- out that the component size doesn't require packing, the Is_Packed
-- flag gets turned off.
--- In the bit packed array case (i.e. component size is known at compile
+-- In the bit-packed array case (i.e. component size is known at compile
-- time and is 1-7, 9-15, 17-31 or 33-63), Is_Bit_Packed_Array will be
-- set once the array type is frozen.
--
@@ -2917,7 +2917,7 @@ package Einfo is
-- Is_Packed_Array_Impl_Type (Flag138)
-- Defined in all entities. This flag is set on the entity for the type
-- used to implement a packed array (either a modular type or a subtype
--- of Packed_Bytes{1,2,4} in the bit packed array case, a regular array
+-- of Packed_Bytes{1,2,4} in the bit-packed array case, a regular array
-- in the non-standard enumeration index case). It is set if and only
-- if the type appears in the Packed_Array_Impl_Type field of some other
-- entity. It is used by the back end to activate the special processing
@@ -3731,10 +3731,10 @@ package Einfo is
-- Packed_Array_Impl_Type (Node23)
-- Defined in array types and subtypes, except for the string literal
-- subtype case, if the corresponding type is packed and implemented
--- specially (either bit packed or packed to eliminate holes in the
+-- specially (either bit-packed or packed to eliminate holes in the
-- non-contiguous enumeration index types). References the type used to
-- represent the packed array, which is either a modular type for short
--- static arrays or an array of System.Unsigned in the bit packed case,
+-- static arrays or an array of System.Unsigned in the bit-packed case,
-- or a regular array in the non-standard enumeration index case). Note
-- that in some situations (internal types and references to fields of
-- variant records), it is not always possible to construct this type in
diff --git a/gcc/ada/exp_ch6.adb b/gcc/ada/exp_ch6.adb
index f481fa9..cc59353 100644
--- a/gcc/ada/exp_ch6.adb
+++ b/gcc/ada/exp_ch6.adb
@@ -1834,7 +1834,7 @@ package body Exp_Ch6 is
then
Add_Call_By_Copy_Code;
- -- References to components of bit packed arrays are expanded
+ -- References to components of bit-packed arrays are expanded
-- at this point, rather than at the point of analysis of the
-- actuals, to handle the expansion of the assignment to
-- [in] out parameters.
@@ -1858,7 +1858,7 @@ package body Exp_Ch6 is
then
Add_Simple_Call_By_Copy_Code;
- -- References to slices of bit packed arrays are expanded
+ -- References to slices of bit-packed arrays are expanded
elsif Is_Ref_To_Bit_Packed_Slice (Actual) then
Add_Call_By_Copy_Code;
@@ -2038,7 +2038,7 @@ package body Exp_Ch6 is
-- Processing for IN parameters
else
- -- For IN parameters in the bit packed array case, we expand an
+ -- For IN parameters in the bit-packed array case, we expand an
-- indexed component (the circuit in Exp_Ch4 deliberately left
-- indexed components appearing as actuals untouched, so that
-- the special processing above for the OUT and IN OUT cases
@@ -2052,7 +2052,7 @@ package body Exp_Ch6 is
Reset_Packed_Prefix;
Expand_Packed_Element_Reference (Actual);
- -- If we have a reference to a bit packed array, we copy it, since
+ -- If we have a reference to a bit-packed array, we copy it, since
-- the actual must be byte aligned.
-- Is this really necessary in all cases???
diff --git a/gcc/ada/freeze.adb b/gcc/ada/freeze.adb
index 3850ca5..173eae8 100644
--- a/gcc/ada/freeze.adb
+++ b/gcc/ada/freeze.adb
@@ -2779,7 +2779,7 @@ package body Freeze is
if Is_Bit_Packed_Array (Arr) then
- -- Check number of elements for bit packed arrays that come from
+ -- Check number of elements for bit-packed arrays that come from
-- source and have compile time known ranges. The bit-packed
-- arrays circuitry does not support arrays with more than
-- Integer'Last + 1 elements, and when this restriction is
@@ -2861,7 +2861,7 @@ package body Freeze is
-- If any of the index types was an enumeration type with a non-
-- standard rep clause, then we indicate that the array type is
- -- always packed (even if it is not bit packed).
+ -- always packed (even if it is not bit-packed).
if Non_Standard_Enum then
Set_Has_Non_Standard_Rep (Base_Type (Arr));
@@ -2870,7 +2870,7 @@ package body Freeze is
Set_Component_Alignment_If_Not_Set (Arr);
- -- If the array is packed and bit packed or packed to eliminate holes
+ -- If the array is packed and bit-packed or packed to eliminate holes
-- in the non-contiguous enumeration index types, we must create the
-- packed array type to be used to actually implement the type. This
-- is only needed for real array types (not for string literal types,
@@ -4329,7 +4329,7 @@ package body Freeze is
-- component clauses, where we must check the size. This is not done
-- till the freeze point since for fixed-point types, we do not know
-- the size until the type is frozen. Similar processing applies to
- -- bit packed arrays.
+ -- bit-packed arrays.
if Is_First_Subtype (Rec) then
Comp := First_Component (Rec);
diff --git a/gcc/ada/sem_type.adb b/gcc/ada/sem_type.adb
index a49eac5..3bc27db 100644
--- a/gcc/ada/sem_type.adb
+++ b/gcc/ada/sem_type.adb
@@ -1607,7 +1607,7 @@ package body Sem_Type is
Act1 := Left_Opnd (N);
Act2 := Right_Opnd (N);
- -- Use the type of tye second formal, so as to include
+ -- Use the type of the second formal, so as to include
-- exponentiation, where the exponent may be ambiguous and
-- the result non-universal.