aboutsummaryrefslogtreecommitdiff
path: root/gcc/loop.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2002-09-08 12:41:20 +0200
committerAndreas Jaeger <aj@gcc.gnu.org>2002-09-08 12:41:20 +0200
commit2567406a17362fdf2f3b7150d1c006b87c63ee1f (patch)
tree55dd83715af1de496408e6e73457d8b79a04f206 /gcc/loop.c
parent6bb72ea0be35697c3317b4f558bb378f5331a646 (diff)
downloadgcc-2567406a17362fdf2f3b7150d1c006b87c63ee1f.zip
gcc-2567406a17362fdf2f3b7150d1c006b87c63ee1f.tar.gz
gcc-2567406a17362fdf2f3b7150d1c006b87c63ee1f.tar.bz2
emit-rtl.c (set_mem_attributes_minus_bitpos): Fix array_ref handling.
2002-09-08 Jan Hubicka <jh@suse.cz> * emit-rtl.c (set_mem_attributes_minus_bitpos): Fix array_ref handling. * loop.c (loop_gics_reduce): Emit addition after. From-SVN: r56950
Diffstat (limited to 'gcc/loop.c')
-rw-r--r--gcc/loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop.c b/gcc/loop.c
index a367d34..80bc6f8 100644
--- a/gcc/loop.c
+++ b/gcc/loop.c
@@ -4754,7 +4754,7 @@ loop_givs_reduce (loop, bl)
rtx insert_before;
if (! auto_inc_opt)
- insert_before = tv->insn;
+ insert_before = NEXT_INSN (tv->insn);
else if (auto_inc_opt == 1)
insert_before = NEXT_INSN (v->insn);
else