Searched defs:SelectInst (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/
H A DInstructions.h1412 // SelectInst Class
1415 /// SelectInst - This class represents the LLVM 'select' instruction.
1417 class SelectInst : public Instruction { class in namespace:llvm
1425 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1432 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1440 virtual SelectInst *clone_impl() const;
1442 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1445 return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1447 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1450 return new(3) SelectInst(
[all...]

Completed in 76 milliseconds