Lines Matching refs:V2
886 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
892 LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2),
897 V2->setAlignment(Align);
898 V2->setAtomic(LI.getOrdering(), LI.getSynchScope());
899 return SelectInst::Create(SI->getCondition(), V1, V2);
1272 /// if () { *P = v1; } else { *P = v2 }
1276 /// *P = v1; if () { *P = v2; }