Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/IR/
H A DConstantsContext.h151 class InsertElementConstantExpr final : public ConstantExpr {
153 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) in InsertElementConstantExpr() function
295 struct OperandTraits<InsertElementConstantExpr>
296 : public FixedNumOperandTraits<InsertElementConstantExpr, 3> {};
297 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(InsertElementConstantExpr, Value)
535 return new InsertElementConstantExpr(Ops[0], Ops[1], Ops[2]);
H A DConstants.cpp546 else if (isa<InsertElementConstantExpr>(C)) in deleteConstant()
547 delete static_cast<InsertElementConstantExpr *>(C); in deleteConstant()