https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110751
--- Comment #38 from rguenther at suse dot de <rguenther at suse dot de> --- On Wed, 13 Sep 2023, juzhe.zhong at rivai dot ai wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110751 > > --- Comment #36 from JuzheZhong <juzhe.zhong at rivai dot ai> --- > (In reply to Richard Biener from comment #34) > > The ELSE value of type TYPE would be constructed like > > > > tree var = create_tmp_var (type); > > tree else_val = get_or_create_ssa_default_def (cfun, var); > > > > I'm not sure const0_rtx is a good representation on RTL - how would > > you distinguish that from a conditional operation on an integer vector > > with else value zero? Say for an integer division? > > My current approach is that I passed scalar 0 to the ELSE VALUE. > > So in the I relax the operand predicate of the cond_len else operand: > > it can be either a register_operand has VECTOR_MODE or a const_int 0 (Note > that > it > can't be the CONST_VECTOR). I see.