aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/jcf-write.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@gcc.gnu.org>2003-10-22 18:00:06 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-10-22 18:00:06 +0000
commit67264b4fe2e059af9e672b17f516d6c4c0b03785 (patch)
tree1b747e339c225cdfbed517d164b762c63bd110c6 /gcc/java/jcf-write.c
parent1322946805597f3b80f585da69c3447a79a37de0 (diff)
downloadgcc-67264b4fe2e059af9e672b17f516d6c4c0b03785.zip
gcc-67264b4fe2e059af9e672b17f516d6c4c0b03785.tar.gz
gcc-67264b4fe2e059af9e672b17f516d6c4c0b03785.tar.bz2
ChangeLog: Fix typos.
* ChangeLog: Fix typos. * expr.c: Fix comment typos. * jcf-write.c: Likewise. * lang.c: Likewise. * lex.c: Likewise. * mangle.c: Likewise. * parse-scan.y: Likewise. * parse.y: Likewise. From-SVN: r72809
Diffstat (limited to 'gcc/java/jcf-write.c')
-rw-r--r--gcc/java/jcf-write.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/jcf-write.c b/gcc/java/jcf-write.c
index 097177e..8a6519b 100644
--- a/gcc/java/jcf-write.c
+++ b/gcc/java/jcf-write.c
@@ -276,7 +276,7 @@ struct jcf_partial
/* Information about the current switch statement. */
struct jcf_switch_state *sw_state;
- /* The count of jsr instructions that have been emmitted. */
+ /* The count of jsr instructions that have been emitted. */
long num_jsrs;
};
@@ -2868,7 +2868,7 @@ generate_classfile (tree clas, struct jcf_partial *state)
append_chunk (NULL, 0, state);
cpool_chunk = state->chunk;
- /* Next allocate the chunk containing acces_flags through fields_count. */
+ /* Next allocate the chunk containing access_flags through fields_count. */
if (clas == object_type_node)
i = 10;
else
@@ -2877,7 +2877,7 @@ generate_classfile (tree clas, struct jcf_partial *state)
i = get_access_flags (TYPE_NAME (clas));
if (! (i & ACC_INTERFACE))
i |= ACC_SUPER;
- PUT2 (i); /* acces_flags */
+ PUT2 (i); /* access_flags */
i = find_class_constant (&state->cpool, clas); PUT2 (i); /* this_class */
if (clas == object_type_node)
{