diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-02-12 15:17:56 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-02-12 15:17:56 +0000 |
commit | 647eea9dd803b0b7df330dc834d5817761fcfbe6 (patch) | |
tree | e97624b94c226e126abcb5ef4b80d102a7fd124b /gcc/simplify-rtx.c | |
parent | 0008978072badfdf3c5afc69f98530cc3e48f953 (diff) | |
download | gcc-647eea9dd803b0b7df330dc834d5817761fcfbe6.zip gcc-647eea9dd803b0b7df330dc834d5817761fcfbe6.tar.gz gcc-647eea9dd803b0b7df330dc834d5817761fcfbe6.tar.bz2 |
c-tree.h, [...]: Fix comment typos.
* c-tree.h, combine.c, expmed.c, flow.c, libgcc2.c,
simplify-rtx.c, tree-ssa-live.h: Fix comment typos. Follow
spelling conventions.
From-SVN: r94939
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 95735e6..dc452db 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -1925,7 +1925,7 @@ simplify_binary_operation (enum rtx_code code, enum machine_mode mode, return const0_rtx; /* Transform (and (extend X) C) into (zero_extend (and X C)) if - there are no non-zero bits of C outside of X's mode. */ + there are no nonzero bits of C outside of X's mode. */ if ((GET_CODE (op0) == SIGN_EXTEND || GET_CODE (op0) == ZERO_EXTEND) && GET_CODE (trueop1) == CONST_INT |