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]

Re: Re: PATCH: small -freorder-block defect


On Tue, Mar 14, 2000 at 04:57:42PM -0800, Jason Eckhardt wrote:
> - 	  && returnjump_p (x)
> + 	  && GET_CODE (PATTERN (x)) == RETURN

No, you also see things like

  (parallel [(use (reg 26))
	     (return)])

How about

  returnjump_p (x) && ! condjump_p (x)


r~

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