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: crossjumping speedups


On Fri, Jul 20, 2001 at 08:56:52PM +0200, Jan Hubicka wrote:
> !          Avoid duplicated work by ensuring that at least one of edges
> !          is the first outgoing edge.  This way we try each combination
> !          maximally twice, instead of N ougoing edges ^ 2.  */
>         if (e != fallthru && fallthru
> + 	  && (e->src->succ == e || fallthru->src->succ == fallthru)
[...]
> ! 	        && (e->src->succ == e || e2->src->succ == e2)

Everything but this is ok.  You cannot assume order on edges.


r~


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