diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-13 20:22:58 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-13 20:22:58 +0000 |
commit | e53624d076d2fa5f76760ccce37e2afb2c32c715 (patch) | |
tree | 2eca897dc3da47616e40685093357b43bd14d970 /gcc/combine.c | |
parent | 779740c5bf70c1972514e353be168626655957d0 (diff) | |
download | gcc-e53624d076d2fa5f76760ccce37e2afb2c32c715.tar.gz |
* combine.c (simplify_comparison): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31959 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index f6b88670310..fd075741e7f 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -10138,7 +10138,7 @@ simplify_comparison (code, pop0, pop1) equality_comparison_p = (code == EQ || code == NE); sign_bit_comparison_p = ((code == LT || code == GE) && const_op == 0); unsigned_comparison_p = (code == LTU || code == LEU || code == GTU - || code == LEU); + || code == GEU); /* If this is a sign bit comparison and we can do arithmetic in MODE, say that we will only be needing the sign bit of OP0. */ |