Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:V1

851       // load (select (Cond, &V1, &V2))  --> select(Cond, load &V1, load &V2).
855 LoadInst *V1 = Builder->CreateLoad(SI->getOperand(1),
859 V1->setAlignment(Align);
861 return SelectInst::Create(SI->getCondition(), V1, V2);
1139 /// if () { *P = v1; } else { *P = v2 }
1143 /// *P = v1; if () { *P = v2; }