This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[patch] fix typo in make.adb explanation of Q
- From: oliver dot kellogg at t-online dot de (Oliver Kellogg)
- To: gcc-patches at gcc dot gnu dot org
- Date: Sun, 10 May 2009 11:47:27 +0200
- Subject: [patch] fix typo in make.adb explanation of Q
- Reply-to: okellogg at users dot sourceforge dot net
Index: make.adb
===================================================================
--- make.adb (revision 147329)
+++ make.adb (working copy)
@@ -147,7 +147,7 @@
-- 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.