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: Fix constant libcalls


> On Fri, Dec 21, 2001 at 05:08:53PM +0100, Jan Hubicka wrote:
> 	valreg == 0 || GET_CODE (valreg) == PARALLEL
> 
> is the reverse of 
> 
> 	valreg != 0 && GET_CODE (valreg) != PARALLEL
> 
> and the former gates ECF_LIBCALL_BLOCK off, which means that the
> later test can be simplified to
> 
> 	if (pass && (flags & ECF_LIBCALL_BLOCK))
> 
> correct?
> 
True, now I see it too :)
Can I install it with the 3 changes?

Honza
> 
> r~


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