On Wed, Apr 20, 2016 at 02:22:20AM -0400, tbsaunde+...@tbsaunde.org wrote: > * function.h (struct expr_status): make x_forced_labels a vector.
Capital M. > --- a/gcc/cfgrtl.c > +++ b/gcc/cfgrtl.c > @@ -115,7 +115,8 @@ can_delete_label_p (const rtx_code_label *label) > return (!LABEL_PRESERVE_P (label) > /* User declared labels must be preserved. */ > && LABEL_NAME (label) == 0 > - && !in_insn_list_p (forced_labels, label)); > + && !vec_safe_contains<rtx_insn *> (forced_labels, > + const_cast<rtx_code_label *> > (label))); > } Line too long. Rewrite this with a conditional, maybe? Segher