Per http://gcc.gnu.org/codingconventions.html we should use
dependent, not dependant.  This fixes this for the new GCC 4.7
porting notes as well as one old news entry.

Committed.

Gerald

Index: gcc-4.7/porting_to.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-4.7/porting_to.html,v
retrieving revision 1.7
diff -u -3 -p -r1.7 porting_to.html
--- gcc-4.7/porting_to.html     27 Jan 2012 01:04:13 -0000      1.7
+++ gcc-4.7/porting_to.html     13 Feb 2012 22:17:27 -0000
@@ -106,7 +106,7 @@ Instead, use the POSIX macro <code>_REEN
 <p>
 The C++ compiler no longer performs some extra unqualified lookups it
 had performed in the past, namely
-<a href="http://gcc.gnu.org/PR24163";>dependant base class scope lookups</a>
+<a href="http://gcc.gnu.org/PR24163";>dependent base class scope lookups</a>
 and <a href="http://gcc.gnu.org/PR29131";>unqualified template function</a>
 lookups.
 </p>
Index: news/ia32.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/news/ia32.html,v
retrieving revision 1.6
diff -u -3 -p -r1.6 ia32.html
--- news/ia32.html      21 Jan 2002 10:24:45 -0000      1.6
+++ news/ia32.html      13 Feb 2012 22:17:27 -0000
@@ -36,7 +36,7 @@ and focused on better optimization for t
     free registers and allocate them as scratches.  This is a generalization
     of the PGCC -friscify pass.</li>
 
-<li>Recognition of extension-dependant GIVs.  This shows up in a loop like
+<li>Recognition of extension-dependent GIVs.  This shows up in a loop like
 <pre>
         short s;
         for (s = 0; s &lt; 10; ++s)
@@ -48,7 +48,7 @@ and focused on better optimization for t
 
 <li>Recognition of certain forms of loop-carried post-decrement.  Primarily,
 <pre>
-        while (a--) { /* nothing dependant on a */ }
+        while (a--) { /* nothing dependent on a */ }
 </pre>
     becomes
 <pre>

Reply via email to