accidentally deleted by a recent checkin.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84753
138bc75d-0d04-0410-961f-
82ee72b054a4
+2004-07-15 Jeff Law <law@redhat.com>
+
+ * loop.c (check_insn_for_givs): Restore check for code labels that was
+ accidentally deleted by a recent checkin.
+
2004-07-15 Nathan Sidwell <nathan@codesourcery.com>
* vec.h (VEC_T_truncate): Allow truncation of an empty vector.
/* 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;
}