aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2009-07-13 15:04:52 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2009-07-13 15:04:52 +0200
commit81c85afed3060fcf54978b01a98a086345c022bd (patch)
tree74de4b5ce218c6cd3fe6bd5472898d110d617204 /gcc/ada
parent690001a2642a3310367f1dfbd353523d52c37c66 (diff)
downloadgcc-81c85afed3060fcf54978b01a98a086345c022bd.zip
gcc-81c85afed3060fcf54978b01a98a086345c022bd.tar.gz
gcc-81c85afed3060fcf54978b01a98a086345c022bd.tar.bz2
Update comments.
From-SVN: r149582
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/make.adb10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/make.adb b/gcc/ada/make.adb
index e69cec4..c1afc14 100644
--- a/gcc/ada/make.adb
+++ b/gcc/ada/make.adb
@@ -140,16 +140,16 @@ package body Make is
-- Q | | ........ | | | | ....... | |
-- +---+--------------+---+---+---+-----------+---+--------
-- ^ ^ ^
- -- Q.First Q_Front Q.Last - 1
+ -- Q.First Q_Front Q.Last-1
--
- -- The elements comprised between Q.First and Q_Front - 1 are the elements
+ -- The elements comprised between Q.First and Q_Front-1 are the elements
-- that have been enqueued and then dequeued, while the elements between
- -- Q_Front and Q.Last - 1 are the elements currently in the Q. When the Q
+ -- Q_Front and Q.Last-1 are the elements currently in the Q. When the Q
-- is initialized Q_Front = Q.First = Q.Last. After Compile_Sources has
-- terminated its execution, Q_Front = Q.Last and the elements contained
- -- between Q.Front and Q.Last-1 are those that were explored and thus
+ -- between Q.First and Q.Last-1 are those that were explored and thus
-- marked by Compile_Sources. Whenever the Q is reinitialized, the elements
- -- between Q.First and Q.Last - 1 are unmarked.
+ -- between Q.First and Q.Last-1 are unmarked.
procedure Init_Q;
-- Must be called to (re)initialize the Q