HomeSort by: relevance | last modified time | path
    Searched refs:BinaryConstantExpr (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantsContext.h 69 /// BinaryConstantExpr - This class is private to Constants.cpp, and is used
71 class BinaryConstantExpr final : public ConstantExpr {
73 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2,
348 struct OperandTraits<BinaryConstantExpr>
349 : public FixedNumOperandTraits<BinaryConstantExpr, 2> {};
350 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BinaryConstantExpr, Value)
617 return new BinaryConstantExpr(Opcode, Ops[0], Ops[1],
Constants.cpp 547 else if (isa<BinaryConstantExpr>(C))
548 delete static_cast<BinaryConstantExpr *>(C);

Completed in 20 milliseconds