| 53 | } |
| 54 | |
| 55 | bool StateValue::isValid() const { |
| 56 | return value.isValid() && non_poison.isValid(); |
| 57 | } |
| 58 | |
| 59 | expr StateValue::operator==(const StateValue &other) const { |
| 60 | return non_poison == other.non_poison && value == other.value; |
no outgoing calls
no test coverage detected