| 298 | } |
| 299 | |
| 300 | expr Byte::ptrNonpoison() const { |
| 301 | auto bit = p.bits() - 1 - byte_has_ptr_bit(); |
| 302 | return isAsmMode() ? expr(true) : p.extract(bit, bit) == 1; |
| 303 | } |
| 304 | |
| 305 | Pointer Byte::ptr() const { |
| 306 | return { m, ptrValue() }; |
no test coverage detected