diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-21 03:20:04 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-21 03:20:04 +0000 |
commit | 394fb3e2df3c127131dd2805153793fcee868102 (patch) | |
tree | 8093d6470a7fb4a32e88a06e02bdb594f422f543 /gcc/java/class.c | |
parent | a3ff64f5acacd90a936bf8af3fb19159dcca6fd3 (diff) | |
download | gcc-394fb3e2df3c127131dd2805153793fcee868102.tar.gz |
2001-06-20 Alexandre Petit-Bianco <apbianco@redhat.com>
* class.c (java_hash_tree_node): Fixed indentation in leading comment.
* parse.y (do_resolve_class): Moved comments out to leading comment
section. Removed local `start', New local `_ht' and
`circularity_hash.' Record `enclosing' in hash table and search
it to detect circularity. Use `enclosing' as an argument to
`lookup_cl.' Free the hash table when done.
(http://gcc.gnu.org/ml/gcc-patches/2001-06/msg01318.html )
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43480 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index 40c8a83a03c..894671c2422 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -618,9 +618,9 @@ init_test_hash_newfunc (entry, table, string) return (struct hash_entry *) ret; } -/* Hash table helpers. Also reused in find_applicable_accessible_methods_list - (parse.y). The hash of a tree node is it's pointer value, - comparison is direct. */ +/* Hash table helpers. Also reused in find_applicable_accessible_methods_list + (parse.y). The hash of a tree node is its pointer value, comparison + is direct. */ unsigned long java_hash_hash_tree_node (k) |