diff options
author | Gary Dismukes <dismukes@adacore.com> | 2016-07-04 10:25:35 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2016-07-04 12:25:35 +0200 |
commit | 607114db6a0ae4c23ca0937cb1744f7110c6cd36 (patch) | |
tree | 265397018d172e8a113a6083247052fa6c5731d4 /gcc/ada/exp_ch6.adb | |
parent | c308e7620eccfbb8f0b5859aab351e3192d761c1 (diff) | |
download | gcc-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/ada/exp_ch6.adb')
-rw-r--r-- | gcc/ada/exp_ch6.adb | 8 |
1 files changed, 4 insertions, 4 deletions
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??? |