Prathamesh Kulkarni <prathamesh.kulka...@linaro.org> writes: > @@ -10288,6 +10261,23 @@ vectorizable_condition (stmt_vec_info stmt_info, > gimple_stmt_iterator *gsi, > vect_finish_stmt_generation (stmt_info, new_stmt, gsi); > vec_compare = vec_compare_name; > } > + > + if (masks) > + { > + unsigned vec_num = vec_oprnds0.length (); > + tree loop_mask > + = vect_get_loop_mask (gsi, masks, vec_num * ncopies, > + vectype, vec_num * j + i); > + tree tmp2 = make_ssa_name (vec_cmp_type); > + gassign *g = gimple_build_assign (tmp2, BIT_AND_EXPR, > + vec_compare, loop_mask);
Nit: misindented line. OK with that change, thanks. Richard