diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-13 13:04:52 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-13 13:04:52 +0000 |
commit | 84173d6855b57b533267ca471cbb8fd7f598ced3 (patch) | |
tree | 74de4b5ce218c6cd3fe6bd5472898d110d617204 /gcc/ada | |
parent | 1afa43900e842c0d6cb6cff22100c9ebd1b78640 (diff) | |
download | gcc-84173d6855b57b533267ca471cbb8fd7f598ced3.tar.gz |
Update comments.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149582 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada')
-rw-r--r-- | gcc/ada/make.adb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/make.adb b/gcc/ada/make.adb index e69cec4a5ac..c1afc14e17d 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 |