diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2015-07-13 04:46:34 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2015-07-13 04:46:34 +0000 |
commit | 026c3cfd5e92e7f358290921984b57e1b433e658 (patch) | |
tree | b334918063791e89f97a111eb02e3d0c9f8a766e /gcc/java | |
parent | 7e8ce0f35920ca44b790a742ab1e5058034c7fc2 (diff) | |
download | gcc-026c3cfd5e92e7f358290921984b57e1b433e658.zip gcc-026c3cfd5e92e7f358290921984b57e1b433e658.tar.gz gcc-026c3cfd5e92e7f358290921984b57e1b433e658.tar.bz2 |
Fix double word typos.
From-SVN: r225726
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/java/class.c | 2 | ||||
-rw-r--r-- | gcc/java/java-except.h | 2 | ||||
-rw-r--r-- | gcc/java/jcf-reader.c | 2 |
4 files changed, 9 insertions, 3 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index d64d3f2..c64d3c9 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,9 @@ +2015-07-12 Aldy Hernandez <aldyh@redhat.com> + + * class.c: Fix double word typos. + * java-except.h: Same. + * jcf-reader.c: Same. + 2015-07-10 Andrew MacLeod <amacleod@redhat.com> * java-gimplify.c: Include cfghooks.h rather than predict.h. diff --git a/gcc/java/class.c b/gcc/java/class.c index 234bddc..9e6b45c 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -1045,7 +1045,7 @@ build_static_class_ref (tree type) DECL_CONTEXT (decl) = type; /* ??? We want to preserve the DECL_CONTEXT we set just above, - that that means not calling pushdecl_top_level. */ + that means not calling pushdecl_top_level. */ IDENTIFIER_GLOBAL_VALUE (decl_name) = decl; } diff --git a/gcc/java/java-except.h b/gcc/java/java-except.h index e9adf83..c471c1d 100644 --- a/gcc/java/java-except.h +++ b/gcc/java/java-except.h @@ -36,7 +36,7 @@ struct eh_range /* Surrounding handler, if any. */ struct eh_range *outer; - /* The first child range. It is is nested inside this range + /* The first child range. It is nested inside this range (i.e. this.start_pc <= first_child.end_pc && this.end_pc >= first_child.end_pc). The children are linked together using next_sibling, and are sorted diff --git a/gcc/java/jcf-reader.c b/gcc/java/jcf-reader.c index 3e15257..f18161f 100644 --- a/gcc/java/jcf-reader.c +++ b/gcc/java/jcf-reader.c @@ -352,7 +352,7 @@ jcf_parse_constant_pool (JCF* jcf) /* Make sure at least 9 bytes are available. This is enough for all fixed-sized constant pool entries (so we don't need many - more JCF_FILL calls below), but is is small enough that + more JCF_FILL calls below), but is small enough that we are guaranteed to not hit EOF (in a valid .class file). */ JCF_FILL (jcf, 9); constant_kind = JCF_readu (jcf); |