Home
last modified time | relevance | path

Searched refs:SelectConstantExpr (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstantsContext.h95 class SelectConstantExpr final : public ConstantExpr {
97 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) in SelectConstantExpr() function
283 struct OperandTraits<SelectConstantExpr>
284 : public FixedNumOperandTraits<SelectConstantExpr, 3> {};
285 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(SelectConstantExpr, Value)
527 return new SelectConstantExpr(Ops[0], Ops[1], Ops[2]);
H A DConstants.cpp550 else if (isa<SelectConstantExpr>(C)) in deleteConstant()
551 delete static_cast<SelectConstantExpr *>(C); in deleteConstant()