| 386 | } |
| 387 | |
| 388 | expr Pointer::addNoUOverflow(const expr &offset, bool offset_only) const { |
| 389 | if (offset_only) |
| 390 | return getOffset().add_no_uoverflow(offset); |
| 391 | return getAddress().add_no_uoverflow(offset.sextOrTrunc(bits_ptr_address)); |
| 392 | } |
| 393 | |
| 394 | expr Pointer::operator==(const Pointer &rhs) const { |
| 395 | return reprWithoutAttrs() == rhs.reprWithoutAttrs(); |
no test coverage detected