| 941 | } |
| 942 | |
| 943 | bool Pointer::isBlkSingleByte() const { |
| 944 | uint64_t blk_size; |
| 945 | return blockSizeAligned().isUInt(blk_size) && blk_size == bits_byte/8; |
| 946 | } |
| 947 | |
| 948 | pair<Pointer, expr> Pointer::findLogicalLocalPointer(const expr &addr) const { |
| 949 | DisjointExpr<Pointer> ret(mkNullPointer(m)); |
no test coverage detected