OSDN Git Service

* tree.c: Fix a comment typo.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 28 Sep 2004 11:55:45 +0000 (11:55 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 28 Sep 2004 11:55:45 +0000 (11:55 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88229 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/tree.c

index 05e6fc2..b7b0d3f 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-28  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * tree.c: Fix a comment typo.
+
 2004-09-28  Nathan Sidwell  <nathan@codesourcery.com>
 
        * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): Remove.
index 16bb39b..a8cea23 100644 (file)
@@ -2340,7 +2340,7 @@ fold_if_not_in_template (tree expr)
   /* In the body of a template, there is never any need to call
      "fold".  We will call fold later when actually instantiating the
      template.  Integral constant expressions in templates will be
-     evaluted via fold_non_dependent_expr, as necessary.  */
+     evaluated via fold_non_dependent_expr, as necessary.  */
   return (processing_template_decl ? expr : fold (expr));
 }