aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/mangle.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-01-18 22:15:51 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-01-18 22:15:51 +0000
commit634661fe5a3f091d6c4b15527ddc7cfc3e448469 (patch)
tree844d5b8a384374b2b793ce1f6da97b6f65d60189 /gcc/java/mangle.c
parenta1fb4e912af42cf0b6f54136575ffdb09384a4a2 (diff)
downloadgcc-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/mangle.c')
-rw-r--r--gcc/java/mangle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/mangle.c b/gcc/java/mangle.c
index 9b52b2b..ca5997c 100644
--- a/gcc/java/mangle.c
+++ b/gcc/java/mangle.c
@@ -278,7 +278,7 @@ find_compression_array_template_match (tree string)
/* We go through the compression table and try to find a complete or
partial match. The function returns the compression table entry
- that (evenutally partially) matches TYPE. *NEXT_CURRENT can be set
+ that (eventually partially) matches TYPE. *NEXT_CURRENT can be set
to the rest of TYPE to be mangled. */
static int
@@ -380,7 +380,7 @@ mangle_record_type (tree type, int for_pointer)
}
/* Mangle a pointer type. There are two cases: the pointer is already
- in the compression table: the compression is emited sans 'P'
+ in the compression table: the compression is emitted sans 'P'
indicator. Otherwise, a 'P' is emitted and, depending on the type,
a partial compression or/plus the rest of the mangling. */
@@ -474,7 +474,7 @@ mangle_array_type (tree p_type)
compression_table_add (p_type);
}
-/* Write a substition string for entry I. Substitution string starts a
+/* Write a substitution string for entry I. Substitution string starts a
-1 (encoded S_.) The base is 36, and the code shamlessly taken from
cp/mangle.c. */