cp-tree.h, [...]: Fix comment typos.
authorKazu Hirata <kazu@codesourcery.com>
Tue, 6 Sep 2005 02:12:30 +0000 (02:12 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 6 Sep 2005 02:12:30 +0000 (02:12 +0000)
* cp-tree.h, decl.c, decl2.c, semantics.c: Fix comment typos.
Follow spelling conventions.

From-SVN: r103926

gcc/cp/ChangeLog
gcc/cp/cp-tree.h
gcc/cp/decl.c
gcc/cp/decl2.c
gcc/cp/semantics.c

index 97ba8261459c33498a39d35c1ad56debc67aa91c..4c73cfcb72d409646fe6fdfa8636e55e6a1d72d2 100644 (file)
@@ -1,3 +1,8 @@
+2005-09-06  Kazu Hirata  <kazu@codesourcery.com>
+
+       * cp-tree.h, decl.c, decl2.c, semantics.c: Fix comment typos.
+       Follow spelling conventions.
+
 2005-09-05  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/23667
index e8d5fe7704984cb3d0267504b5f5bb5d4e615096..4d5d618950ec589847b28f8a75bb6b6e543446a8 100644 (file)
@@ -1177,12 +1177,12 @@ struct lang_type GTY(())
 /* Mark bits for repeated base checks.  */
 #define TYPE_MARKED_P(NODE) TREE_LANG_FLAG_6 (TYPE_CHECK (NODE))
 
-/* Non-zero if the class NODE has multiple paths to the same (virtual)
+/* Nonzero if the class NODE has multiple paths to the same (virtual)
    base object.  */
 #define CLASSTYPE_DIAMOND_SHAPED_P(NODE) \
   (LANG_TYPE_CLASS_CHECK(NODE)->diamond_shaped)
 
-/* Non-zero if the class NODE has multiple instances of the same base
+/* Nonzero if the class NODE has multiple instances of the same base
    type.  */
 #define CLASSTYPE_REPEATED_BASE_P(NODE) \
   (LANG_TYPE_CLASS_CHECK(NODE)->repeated_base)
@@ -2065,7 +2065,7 @@ extern void decl_shadowed_for_var_insert (tree, tree);
    template.  
 
    In general, DECL_TEMPLATE_INFO is non-NULL only if
-   DECL_USE_TEMPLATE is non-zero.  However, for friends, we sometimes
+   DECL_USE_TEMPLATE is nonzero.  However, for friends, we sometimes
    have DECL_TEMPLATE_INFO even when DECL_USE_TEMPLATE is zero.
    Consider:
 
@@ -2784,7 +2784,7 @@ extern void decl_shadowed_for_var_insert (tree, tree);
      2=explicit template specialization, e.g. int min<int> (int, int);
      3=explicit template instantiation, e.g. template int min<int> (int, int);
 
-   If DECL_USE_TEMPLATE is non-zero, then DECL_TEMPLATE_INFO will also
+   If DECL_USE_TEMPLATE is nonzero, then DECL_TEMPLATE_INFO will also
    be non-NULL.  */
 #define DECL_USE_TEMPLATE(NODE) (DECL_LANG_SPECIFIC (NODE)->decl_flags.use_template)
 
index a32be093c74e17c3f1fc6bfacf49d8f66b89b07d..1d887bf353d5e4c58c2784132c5f62043da88f8a 100644 (file)
@@ -4924,7 +4924,7 @@ cp_finish_decl (tree decl, tree init, tree asmspec_tree, int flags)
            }
 
          /* Check that the initializer for a static data member was a
-            constant.  Althouh we check in the parser that the
+            constant.  Although we check in the parser that the
             initializer is an integral constant expression, we do not
             simplify division-by-zero at the point at which it
             occurs.  Therefore, in:
index 75ec65f85b85a1e6e94811125a7c7e887c8deb96..87ef85885eeca70d37fc05f7a52ce9e9bf0699b4 100644 (file)
@@ -1790,7 +1790,7 @@ import_export_decl (tree decl)
              /* The generic C++ ABI says that class data is always
                 COMDAT, even if there is a key function.  Some
                 variants (e.g., the ARM EABI) says that class data
-                only has COMDAT linkage if the the class data might
+                only has COMDAT linkage if the class data might
                 be emitted in more than one translation unit.  */
              if (!CLASSTYPE_KEY_METHOD (class_type)
                  || targetm.cxx.class_data_always_comdat ())
index 11552db6f012a8f8f26fde970b143441f0ba7b97..074a7fdf081bd8e0a95c7adb27b474c6f50d5148 100644 (file)
@@ -1567,7 +1567,7 @@ finish_stmt_expr_expr (tree expr, tree stmt_expr)
         expression.  */
       TREE_TYPE (stmt_expr) = type;
       /* We must take particular care if TYPE is a class type.  In
-        paticular if EXPR creates a temporary of class type, then it
+        particular if EXPR creates a temporary of class type, then it
         must be destroyed at the semicolon terminating the last
         statement -- but we must make a copy before that happens.