diff options
author | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-03-24 17:48:07 +0000 |
---|---|---|
committer | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-03-24 17:48:07 +0000 |
commit | 36b938a343910149d31789c8939924f90daa69a6 (patch) | |
tree | 89b2171703528d83f5a20ddb5bbf2e0adb78a9ad /gcc/ada/exp_ch5.adb | |
parent | be42496cde4eb1a974bd8f595417a03a8a171364 (diff) | |
download | gcc-36b938a343910149d31789c8939924f90daa69a6.tar.gz |
2008-03-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* 9drpc.adb, a-caldel-vms.adb, a-caldel.adb,
a-calend-vms.adb, a-calend.adb, a-calend.ads,
a-calfor.adb, a-chahan.ads, a-chtgke.adb,
a-cihama.ads, a-ciorse.adb, a-clrefi.ads,
a-cohama.ads, a-comlin.ads, a-coorse.adb,
a-crbtgk.adb, a-direct.adb, a-except-2005.adb,
a-except-2005.ads, a-except.adb, a-except.ads,
a-exexda.adb, a-exexpr-gcc.adb, a-exexpr.adb,
a-exextr.adb, a-filico.ads, a-finali.ads,
a-intnam-aix.ads, a-intnam-solaris.ads, a-ngcefu.adb,
a-ngelfu.adb, a-numaux-darwin.adb, a-numeri.ads,
a-sequio.ads, a-strbou.ads, a-strfix.adb,
checks.adb, exp_ch3.adb, exp_ch4.adb,
exp_ch4.ads, exp_ch5.adb, exp_ch6.adb,
exp_ch6.ads, exp_ch7.adb, exp_ch7.ads,
exp_ch9.adb, exp_ch9.ads, exp_dbug.adb,
exp_dbug.ads, exp_disp.adb, exp_dist.adb,
exp_dist.ads, exp_fixd.adb, exp_fixd.ads: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133483 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/exp_ch5.adb')
-rw-r--r-- | gcc/ada/exp_ch5.adb | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/ada/exp_ch5.adb b/gcc/ada/exp_ch5.adb index d77ec2341fe..e8619a152d1 100644 --- a/gcc/ada/exp_ch5.adb +++ b/gcc/ada/exp_ch5.adb @@ -115,7 +115,7 @@ package body Exp_Ch5 is function Make_Tag_Ctrl_Assignment (N : Node_Id) return List_Id; -- Generate the necessary code for controlled and tagged assignment, - -- that is to say, finalization of the target before, adjustement of + -- that is to say, finalization of the target before, adjustment of -- the target after and save and restore of the tag and finalization -- pointers which are not 'part of the value' and must not be changed -- upon assignment. N is the original Assignment node. @@ -805,7 +805,7 @@ package body Exp_Ch5 is Ensure_Defined (R_Type, N); -- We normally compare addresses to find out which way round to - -- do the loop, since this is realiable, and handles the cases of + -- do the loop, since this is reliable, and handles the cases of -- parameters, conversions etc. But we can't do that in the bit -- packed case or the VM case, because addresses don't work there. @@ -869,7 +869,7 @@ package body Exp_Ch5 is and then not No_Ctrl_Actions (N) then - -- Call TSS procedure for array assignment, passing the the + -- Call TSS procedure for array assignment, passing the -- explicit bounds of right and left hand sides. declare @@ -1789,9 +1789,9 @@ package body Exp_Ch5 is -- discriminant checks are locally suppressed (as in extension -- aggregate expansions) because otherwise the discriminant -- check will be performed within the _assign call. It is also - -- suppressed for assignmments created by the expander that + -- suppressed for assignments created by the expander that -- correspond to initializations, where we do want to copy the - -- tag (No_Ctrl_Actions flag set True). by the expander and we + -- tag (No_Ctrl_Actions flag set True) by the expander and we -- do not need to mess with tags ever (Expand_Ctrl_Actions flag -- is set True in this case). @@ -1802,7 +1802,7 @@ package body Exp_Ch5 is and then not Discriminant_Checks_Suppressed (Empty)) then -- Fetch the primitive op _assign and proper type to call it. - -- Because of possible conflits between private and full view + -- Because of possible conflicts between private and full view -- the proper type is fetched directly from the operation -- profile. @@ -1915,7 +1915,7 @@ package body Exp_Ch5 is Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Loc, Statements => L))); - -- If no restrictions on aborts, protect the whole assignement + -- If no restrictions on aborts, protect the whole assignment -- for controlled objects as per 9.8(11). if Controlled_Type (Typ) @@ -2201,7 +2201,7 @@ package body Exp_Ch5 is -- An optimization. If there are only two alternatives, and only -- a single choice, then rewrite the whole case statement as an - -- if statement, since this can result in susbequent optimizations. + -- if statement, since this can result in subsequent optimizations. -- This helps not only with case statements in the source of a -- simple form, but also with generated code (discriminant check -- functions in particular) @@ -2887,7 +2887,7 @@ package body Exp_Ch5 is -- implicit access formal to the access object, to ensure -- that the return object is initialized in that case. -- In this situation, the target of the assignment must - -- be rewritten to denote a derference of the access to + -- be rewritten to denote a dereference of the access to -- the return object passed in by the caller. if Present (Init_Assignment) then @@ -3262,7 +3262,7 @@ package body Exp_Ch5 is return; end if; - -- Note: we do not have to worry about validity chekcing of the for loop + -- Note: we do not have to worry about validity checking of the for loop -- range bounds here, since they were frozen with constant declarations -- and it is during that process that the validity checking is done. |