Re: [PATCH] Fix vectorizer ICE (PR tree-optimization/53409)

2012-05-21 Thread Richard Guenther
On Mon, May 21, 2012 at 3:59 PM, Jakub Jelinek wrote: > Hi! > > On the following testcase we ICE, because op_def_stmt isn't inside > of the loop (phi is a degenerate phi referencing a phi result from before the > loop) and stmts outside of the loop don't have uid set (or it can contain > garbage).

[PATCH] Fix vectorizer ICE (PR tree-optimization/53409)

2012-05-21 Thread Jakub Jelinek
Hi! On the following testcase we ICE, because op_def_stmt isn't inside of the loop (phi is a degenerate phi referencing a phi result from before the loop) and stmts outside of the loop don't have uid set (or it can contain garbage). Bootstrapped/regtested on x86_64-linux and i686-linux, ok for tr