This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
correct spelling in cp/decl2.c.
- From: Geoffrey Keating <gkeating at apple dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Tue, 5 Nov 2002 16:44:30 -0800 (PST)
- Subject: correct spelling in cp/decl2.c.
This was bugging me...
Bootstrapped & tested on powerpc-darwin.
--
- Geoffrey Keating <geoffk@apple.com>
===File ~/patches/gcc-decl2commenttypo.patch================
Index: cp/ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/ChangeLog,v
retrieving revision 1.3037
diff -u -p -u -p -r1.3037 ChangeLog
--- cp/ChangeLog 4 Nov 2002 01:45:54 -0000 1.3037
+++ cp/ChangeLog 6 Nov 2002 00:44:19 -0000
@@ -1,3 +1,7 @@
+2002-11-05 Geoffrey Keating <geoffk@apple.com>
+
+ * decl2.c (finish_file): Correct spelling.
+
2002-11-03 Mark Mitchell <mark@codesourcery.com>
* call.c (build_special_member_call): Do not try to lookup VTTs by
Index: cp/decl2.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cp/decl2.c,v
retrieving revision 1.571
diff -u -p -u -p -r1.571 decl2.c
--- cp/decl2.c 4 Nov 2002 01:45:55 -0000 1.571
+++ cp/decl2.c 6 Nov 2002 00:44:19 -0000
@@ -2757,7 +2757,7 @@ finish_file ()
All of these may cause others to be needed. For example,
instantiating one function may cause another to be needed, and
- generating the intiailzer for an object may cause templates to be
+ generating the initializer for an object may cause templates to be
instantiated, etc., etc. */
timevar_push (TV_VARCONST);
============================================================