| 767 | } |
| 768 | |
| 769 | expr Pointer::isHeapAllocated() const { |
| 770 | assert(MALLOC == 2 && CXX_NEW == 3); |
| 771 | return getAllocType().extract(1, 1) == 1; |
| 772 | } |
| 773 | |
| 774 | static expr at_least_same_offseting(const Pointer &p1, const Pointer &p2, |
| 775 | bool any_stack) { |
no test coverage detected