Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantsContext.h69 class BinaryConstantExpr final : public ConstantExpr {
71 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2, in BinaryConstantExpr() function
228 struct OperandTraits<BinaryConstantExpr>
229 : public FixedNumOperandTraits<BinaryConstantExpr, 2> {};
230 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BinaryConstantExpr, Value)
483 return new BinaryConstantExpr(Opcode, Ops[0], Ops[1],
H A DConstants.cpp565 else if (isa<BinaryConstantExpr>(C)) in deleteConstant()
566 delete static_cast<BinaryConstantExpr *>(C); in deleteConstant()