Bitwise disjunction assignment operators
Declared in <llvm/Transforms/IPO/Attributor.h>
Assign CHANGED if either operand is CHANGED.
ChangeStatus&
operator|=(
ChangeStatus& l,
ChangeStatus r);
» more...
Union LHS with *RHS in place.
template<unsigned int ElementSize>
bool
operator|=(
SparseBitVector<ElementSize>& LHS,
SparseBitVector<ElementSize> const* RHS);
» more...
Union *LHS with RHS in place.
template<unsigned int ElementSize>
bool
operator|=(
SparseBitVector<ElementSize>* LHS,
SparseBitVector<ElementSize> const& RHS);
» more...
LHS changed.*LHS changed.| Name | Description |
|---|---|
| l | The left-hand change status (updated in place). |
| r | The right-hand change status. |
| LHS | Sparse bit vector updated in place. |
| RHS | Pointer to the sparse bit vector whose bits are added. |