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

/external/llvm/include/llvm/IR/
H A DInstructions.h1433 // SelectInst Class
1436 /// SelectInst - This class represents the LLVM 'select' instruction.
1438 class SelectInst : public Instruction { class in namespace:llvm
1446 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1453 SelectInst(Value *C, Value *S1, Value *S2, const Twine &NameStr, function in class:llvm::SelectInst
1461 virtual SelectInst *clone_impl() const;
1463 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1466 return new(3) SelectInst(C, S1, S2, NameStr, InsertBefore);
1468 static SelectInst *Create(Value *C, Value *S1, Value *S2,
1471 return new(3) SelectInst(
[all...]

Completed in 66 milliseconds