summaryrefslogtreecommitdiff
path: root/gcc/java/mangle.c
diff options
context:
space:
mode:
authorapbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-25 21:37:44 +0000
committerapbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-25 21:37:44 +0000
commit1df337324e161ad1b6c6b03ee194f06c2650a774 (patch)
tree83882e57b42e1141120cdba59d61fa37cdcfa1c1 /gcc/java/mangle.c
parentc8bd48519b14dc528471c5a77fa507de003b822f (diff)
downloadgcc-1df337324e161ad1b6c6b03ee194f06c2650a774.tar.gz
2001-10-24 Alexandre Petit-Bianco <apbianco@redhat.com>
* mangle.c (static tree compression_table): Fixed leading comment. * parse.h (struct parser_ctxt): Fixed field comment. * parse.y (check_pkg_class_access): New prototype, fixed leading comment, new parameter used to emit error only if passed as true. (parse_check_super): Pass extra argument to check_pkg_class_access. (do_resolve_class): Likewise. (process_imports): Likewise. (read_import_dir): Fixed indentation. (find_in_imports_on_demand): New local class_type_name. Local node_to_use deleted. while loop changed into for loop. Report multiple definition only for accessible classes. Improved error message. (start_complete_expand_method): Local `ptr' removed. DECL_ARGUMENTS assigned to parameter list, fixed indentation. while loop changed into for loop, restore TREE_CHAIN on local `tem' before the next iteration. ( http://gcc.gnu.org/ml/gcc-patches/2001-10/msg01323.html ) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46498 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/mangle.c')
-rw-r--r--gcc/java/mangle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/mangle.c b/gcc/java/mangle.c
index 027eb5d5bab..f0bda0eaa77 100644
--- a/gcc/java/mangle.c
+++ b/gcc/java/mangle.c
@@ -255,7 +255,7 @@ mangle_type (type)
/* The compression table is a vector that keeps track of things we've
already seen, so they can be reused. For example, java.lang.Object
- Would generate three entries: two package names and a type. If
+ would generate three entries: two package names and a type. If
java.lang.String is presented next, the java.lang will be matched
against the first two entries (and kept for compression as S_0), and
type String would be added to the table. See mangle_record_type.