Assignment operators

Synopses

Declared in <llvm/IR/Constant.h>

Constants are uniqued and cannot be assigned.

void
operator=(Constant const& Other) = delete;

Values are identity objects and cannot be copy‐assigned.

Value&
operator=(Value const& V) = delete;

Parameters

Name

Description

Other

The constant that would be assigned (deleted).

V

Unused source value (deleted).

Created with MrDocs