Home | History | Annotate | Download | only in IR

Lines Matching refs:S2

1952   SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1956 init(C, S1, S2);
1960 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr,
1964 init(C, S1, S2);
1968 void init(Value *C, Value *S1, Value *S2) {
1969 assert(!areInvalidOperands(C, S1, S2) && "Invalid operands for select");
1972 Op<2>() = S2;
1982 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1986 SelectInst *Sel = new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1992 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1995 return new(3) SelectInst(C, S1, S2, NameStr, InsertAtEnd);