diff options
author | Jim Meyering <meyering@redhat.com> | 2011-04-18 20:42:30 +0000 |
---|---|---|
committer | Jim Meyering <meyering@gcc.gnu.org> | 2011-04-18 20:42:30 +0000 |
commit | cff414845242354eb7879953c96d26b2a79f22ac (patch) | |
tree | 6f559d7543ec619babf7eed1a580fa7cb1198983 /gcc/java | |
parent | f60c25544c92d51515d6eb005a74498547612908 (diff) | |
download | gcc-cff414845242354eb7879953c96d26b2a79f22ac.zip gcc-cff414845242354eb7879953c96d26b2a79f22ac.tar.gz gcc-cff414845242354eb7879953c96d26b2a79f22ac.tar.bz2 |
fix doubled-word typos in comments and strings: e.g., s/in in/in/
From-SVN: r172670
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/java/jcf-parse.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index a96b507..5ddbc9d 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2011-04-18 Jim Meyering <meyering@redhat.com> + + * jcf-parse.c: Fix typo in comment. + 2011-04-14 Nathan Froyd <froydnj@codesourcery.com> * decl.c (poplevel): Use BLOCK_CHAIN and block_chainon. diff --git a/gcc/java/jcf-parse.c b/gcc/java/jcf-parse.c index feeddad..a56c1b7 100644 --- a/gcc/java/jcf-parse.c +++ b/gcc/java/jcf-parse.c @@ -1,6 +1,6 @@ /* Parser for Java(TM) .class files. Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, - 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. This file is part of GCC. @@ -368,7 +368,7 @@ set_source_filename (JCF *jcf, int index) from the input class file into the output file. We don't decode the data at all, merely rewriting constant indexes whenever we come across them: this is necessary because the constant pool in the - output file isn't the same as the constant pool in in the input. + output file isn't the same as the constant pool in the input. The main advantage of this technique is that the resulting annotation data is pointer-free, so it doesn't have to be relocated |