llvm::Constant::operator=

Assignment operators

Synopses

Declared in <llvm/IR/Constant.h>

Constants are uniqued and cannot be assigned.

void
operator=(Constant const& Other) = delete;
» more...

Values are identity objects and cannot be copy-assigned.

Value&
operator=(Value const& V) = delete;
» more...

Parameters

NameDescription
OtherThe constant that would be assigned (deleted).
VUnused source value (deleted).