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

/external/llvm/include/llvm/IR/
H A DInstructions.h1582 // SelectInst Class
1585 /// SelectInst - This class represents the LLVM 'select' instruction.
1587 class SelectInst : public Instruction { class in namespace:llvm
1595 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1602 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1610 SelectInst *clone_impl() const override;
1612 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1615 return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1617 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1620 return new(3) SelectInst(
[all...]

Completed in 636 milliseconds