| 718 | } |
| 719 | |
| 720 | uint64_t Variable::getMangledNameHash() const { |
| 721 | auto mangledName = getMangledName(); |
| 722 | return getMNHash(mangledName); |
| 723 | } |
| 724 | |
| 725 | uint64_t Variable::getMNHash(const string &mangledName) { |
| 726 | return hash_blockz64((uint8_t *)mangledName.c_str()); |
no test coverage detected