Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstantsContext.h122 class ExtractElementConstantExpr final : public ConstantExpr {
124 ExtractElementConstantExpr(Constant *C1, Constant *C2) in ExtractElementConstantExpr() function
288 struct OperandTraits<ExtractElementConstantExpr>
289 : public FixedNumOperandTraits<ExtractElementConstantExpr, 2> {};
290 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ExtractElementConstantExpr, Value)
529 return new ExtractElementConstantExpr(Ops[0], Ops[1]);
H A DConstants.cpp552 else if (isa<ExtractElementConstantExpr>(C)) in deleteConstant()
553 delete static_cast<ExtractElementConstantExpr *>(C); in deleteConstant()