| 388 | } |
| 389 | |
| 390 | size_t Integer::ComputeExtraStateHash(size_t hash, SeenTypes*) const { |
| 391 | return hash_combine(hash, width_, signed_); |
| 392 | } |
| 393 | |
| 394 | bool Float::IsSameImpl(const Type* that, IsSameCache*) const { |
| 395 | const Float* ft = that->AsFloat(); |
nothing calls this directly
no test coverage detected