Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantsContext.h155 class InsertElementConstantExpr final : public ConstantExpr {
157 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) in InsertElementConstantExpr() function
363 struct OperandTraits<InsertElementConstantExpr>
364 : public FixedNumOperandTraits<InsertElementConstantExpr, 3> {};
365 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementConstantExpr, Value)
625 return new InsertElementConstantExpr(Ops[0], Ops[1], Ops[2]);
H A DConstants.cpp553 else if (isa<InsertElementConstantExpr>(C)) in deleteConstant()
554 delete static_cast<InsertElementConstantExpr *>(C); in deleteConstant()