non-NULL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184168
138bc75d-0d04-0410-961f-
82ee72b054a4
2012-02-13 Jakub Jelinek <jakub@redhat.com>
+ * cselib.c (dump_cselib_val): Don't assume l->setting_insn is
+ non-NULL.
+
PR middle-end/52230
* omp-low.c (expand_omp_for): If a static schedule without
chunk size has NULL region->cont, force fd.chunk_size to be
fputs (" locs:", out);
do
{
- fprintf (out, "\n from insn %i ",
- INSN_UID (l->setting_insn));
+ if (l->setting_insn)
+ fprintf (out, "\n from insn %i ",
+ INSN_UID (l->setting_insn));
+ else
+ fprintf (out, "\n ");
print_inline_rtx (out, l->loc, 4);
}
while ((l = l->next));