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

/external/llvm/include/llvm/IR/
H A DInstructions.h1517 // SelectInst Class
1520 /// SelectInst - This class represents the LLVM 'select' instruction.
1522 class SelectInst : public Instruction { class in namespace:llvm
1530 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1537 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1545 SelectInst *clone_impl() const override;
1547 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1550 return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1552 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1555 return new(3) SelectInst(
[all...]

Completed in 74 milliseconds