Returns true if the lattice value is in the FunctionSet state.
| 91 | |
| 92 | /// Returns true if the lattice value is in the FunctionSet state. |
| 93 | bool isFunctionSet() const { return LatticeState == FunctionSet; } |
| 94 | |
| 95 | bool operator==(const CVPLatticeVal &RHS) const { |
| 96 | return LatticeState == RHS.LatticeState && Functions == RHS.Functions; |