llvm::SubOperator::classof

Methods for support type inquiry through isa, cast, and dyn_cast.

Synopses

Declared in <llvm/IR/Operator.h>

Methods for support type inquiry through isa, cast, and dyn_cast.

static
bool
classof(ConstantExpr const* CE);
» more...

Methods for support type inquiry through isa, cast, and dyn_cast.

static
bool
classof(Instruction const* I);
» more...

Methods for support type inquiry through isa, cast, and dyn_cast.

static
bool
classof(Value const* V);
» more...

Return Value

  • True if CE has this operator's opcode.
  • True if I has this operator's opcode.
  • True if V is an Instruction or ConstantExpr with this opcode.

Parameters

NameDescription
CEThe constant expression to test.
IThe instruction to test.
VThe value to test.