diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-11 17:08:01 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-11 17:08:01 +0000 |
commit | b94e25401d0d7f5f8c0e4a3708399dc74767a770 (patch) | |
tree | b28be304a73f6b69b03755500026b87bdf93eb04 /gcc/loop.c | |
parent | 8bd2ac7a935056b71a3ea750b0da81a3dcf8a440 (diff) | |
download | gcc-b94e25401d0d7f5f8c0e4a3708399dc74767a770.tar.gz |
* loop.c (strength_reduce): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15408 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.c b/gcc/loop.c index 2b4af61b574..3c5282ab3d8 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -4071,7 +4071,7 @@ strength_reduce (scan_start, end, loop_top, insn_count, other_giv = tv; } if (! tv && other_giv - && REGNO (other_giv->dest_reg) <= max_reg_before_loop + && REGNO (other_giv->dest_reg) < max_reg_before_loop && (REGNO_LAST_UID (REGNO (other_giv->dest_reg)) == INSN_UID (v->insn)) && INSN_LUID (v->insn) < INSN_LUID (bl->biv->insn)) |