From 84173d6855b57b533267ca471cbb8fd7f598ced3 Mon Sep 17 00:00:00 2001 From: charlet Date: Mon, 13 Jul 2009 13:04:52 +0000 Subject: [PATCH] Update comments. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149582 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ada/make.adb | 10 +++++----- 1 file 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 -- 2.11.0