diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-01-18 22:15:51 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-01-18 22:15:51 +0000 |
commit | 634661fe5a3f091d6c4b15527ddc7cfc3e448469 (patch) | |
tree | 844d5b8a384374b2b793ce1f6da97b6f65d60189 /gcc/java/java-tree.h | |
parent | a1fb4e912af42cf0b6f54136575ffdb09384a4a2 (diff) | |
download | gcc-634661fe5a3f091d6c4b15527ddc7cfc3e448469.zip gcc-634661fe5a3f091d6c4b15527ddc7cfc3e448469.tar.gz gcc-634661fe5a3f091d6c4b15527ddc7cfc3e448469.tar.bz2 |
check-init.c: Fix comment typos.
* check-init.c: Fix comment typos.
* class.c: Likewise.
* constants.c: Likewise.
* decl.c: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* java-except.h: Likewise.
* java-tree.h: Likewise.
* javaop.h: Likewise.
* jcf-dump.c: Likewise.
* jcf-io.c: Likewise.
* jcf-parse.c: Likewise.
* jcf-write.c: Likewise.
* lang.c: Likewise.
* mangle.c: Likewise.
* typeck.c: Likewise.
* verify.c: Likewise.
From-SVN: r61477
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 9a79f3e..88e6f07 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -810,7 +810,7 @@ union lang_tree_node (DECL_LANG_SPECIFIC(DECL)->u.f.ict) /* A list of all the static method calls in the method DECL (if optimizing). Actually each TREE_VALUE points to a COMPONT_EXPR that wraps the - invoation so we can later patch it. */ + invocation so we can later patch it. */ #define DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND(DECL) \ (DECL_LANG_SPECIFIC(DECL)->u.f.smic) /* The Number of Artificial Parameters (NAP) DECL contains. this$<n> @@ -838,7 +838,7 @@ union lang_tree_node #define FIELD_LOCAL_ALIAS_USED(DECL) DECL_LANG_FLAG_7 (DECL) /* True when DECL is a this$<n> field. Note that - FIELD_LOCAL_ALIAS_USED can be differenciated when tested against + FIELD_LOCAL_ALIAS_USED can be differentiated when tested against FIELD_LOCAL_ALIAS. */ #define FIELD_THISN(DECL) DECL_LANG_FLAG_7 (DECL) @@ -1517,7 +1517,7 @@ extern tree *type_map; #define MODIFY_EXPR_FROM_INITIALIZATION_P(EXPR) TREE_LANG_FLAG_2 (EXPR) /* True if EXPR (a TREE_TYPE denoting a class type) has its methods - already checked (for redifitions, etc, see java_check_regular_methods.) */ + already checked (for redefinitions, etc, see java_check_regular_methods.) */ #define CLASS_METHOD_CHECKED_P(EXPR) TREE_LANG_FLAG_2 (EXPR) /* True if TYPE (a TREE_TYPE denoting a class type) was found to |