diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2003-10-22 18:00:06 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-10-22 18:00:06 +0000 |
commit | 67264b4fe2e059af9e672b17f516d6c4c0b03785 (patch) | |
tree | 1b747e339c225cdfbed517d164b762c63bd110c6 /gcc/java/lang.c | |
parent | 1322946805597f3b80f585da69c3447a79a37de0 (diff) | |
download | gcc-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/lang.c')
-rw-r--r-- | gcc/java/lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/java/lang.c b/gcc/java/lang.c index a3ed327..ee476b2 100644 --- a/gcc/java/lang.c +++ b/gcc/java/lang.c @@ -1104,14 +1104,14 @@ java_estimate_num_insns_1 (tree *tp, int *walk_subtrees, void *data) return NULL; } /* Assume that constants and references counts nothing. These should - be majorized by amount of operations amoung them we count later + be majorized by amount of operations among them we count later and are common target of CSE and similar optimizations. */ if (TREE_CODE_CLASS (TREE_CODE (x)) == 'c' || TREE_CODE_CLASS (TREE_CODE (x)) == 'r') return NULL; switch (TREE_CODE (x)) { - /* Reconginze assignments of large structures and constructors of + /* Recognize assignments of large structures and constructors of big arrays. */ case MODIFY_EXPR: case CONSTRUCTOR: |