| 933 | } |
| 934 | |
| 935 | expr Pointer::isNull() const { |
| 936 | if (Memory::observesAddresses()) |
| 937 | return getAddress() == 0; |
| 938 | if (!has_null_block) |
| 939 | return false; |
| 940 | return *this == mkNullPointer(m); |
| 941 | } |
| 942 | |
| 943 | bool Pointer::isBlkSingleByte() const { |
| 944 | uint64_t blk_size; |
no outgoing calls
no test coverage detected