cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.

* cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
        * decl.c (pop_labels): Likewise.

From-SVN: r35544
This commit is contained in:
Kazu Hirata 2000-08-07 07:13:13 +00:00 committed by Jeff Law
parent d169e67cd7
commit 0811ea8f20
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-08-07 Kazu Hirata <kazu@hxi.com>
* cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
* decl.c (pop_labels): Likewise.
2000-08-04 Jeffrey Oldham <oldham@codesourcery.com>
* inc/cxxabi.h (__pbase_type_info): Changed member names to match

View File

@ -1565,7 +1565,7 @@ struct lang_type
#define CLASSTYPE_TAGS(NODE) (TYPE_LANG_SPECIFIC(NODE)->tags)
/* Nonzero if NODE has a primary base class, i.e., a base class with
which it shares the virtual fucntion table pointer. */
which it shares the virtual function table pointer. */
#define CLASSTYPE_HAS_PRIMARY_BASE_P(NODE) \
(CLASSTYPE_PRIMARY_BINFO (NODE) != NULL_TREE)

View File

@ -1241,7 +1241,7 @@ pop_label (label, old_value)
SET_IDENTIFIER_LABEL_VALUE (DECL_NAME (label), old_value);
}
/* At the end of a function, all labels declared within the fucntion
/* At the end of a function, all labels declared within the function
go out of scope. BLOCK is the top-level block for the
function. */