Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:V2

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