Assignment operators
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...
| Name | Description |
|---|---|
| Other | The constant that would be assigned (deleted). |
| V | Unused source value (deleted). |