diff options
author | Jeff Law <law@redhat.com> | 2004-07-15 08:55:15 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2004-07-15 08:55:15 -0600 |
commit | 9270f90074c68721abfb476844c70b23254c65d2 (patch) | |
tree | 3cf6aa3f0fcc3b64879e3f359736c8e9675ec01e /gcc/loop.c | |
parent | 20c9dc8aacd8abe8ddcc5d0ba2da84e78c030b50 (diff) | |
download | gcc-9270f90074c68721abfb476844c70b23254c65d2.zip gcc-9270f90074c68721abfb476844c70b23254c65d2.tar.gz gcc-9270f90074c68721abfb476844c70b23254c65d2.tar.bz2 |
loop.c (check_insn_for_givs): Restore check for code labels that was accidentally deleted by a recent checkin.
* loop.c (check_insn_for_givs): Restore check for code labels that was
accidentally deleted by a recent checkin.
From-SVN: r84753
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5485,7 +5485,7 @@ check_insn_for_givs (struct loop *loop, rtx p, int not_every_iteration, /* Update the status of whether giv can derive other givs. This can change when we pass a label or an insn that updates a biv. */ - if (INSN_P (p)) + if (INSN_P (p) || LABEL_P (p)) update_giv_derive (loop, p); return p; } |