This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Don't COND_EXEC frame related instructions (PR target/59923)


Jakub Jelinek <jakub@redhat.com> writes:
> --- gcc/ifcvt.c.jj	2014-01-09 08:20:55.000000000 +0100
> +++ gcc/ifcvt.c	2014-01-29 17:16:29.912259159 +0100
> @@ -338,6 +338,10 @@ cond_exec_process_insns (ce_if_block *ce
>  
>        gcc_assert (NONJUMP_INSN_P (insn) || CALL_P (insn));
>  
> +      /* dwarf2out can't coope with conditional unwind info.  */
> +      if (reload_completed && RTX_FRAME_RELATED_P (insn))
> +	return FALSE;

Sorry for the nitpick, but s/coope/cope/.

Thanks,
Richard


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]