| 1423 | } |
| 1424 | |
| 1425 | static expr mk_liveness_array() { |
| 1426 | if (!num_nonlocals) |
| 1427 | return {}; |
| 1428 | |
| 1429 | // consider all non_locals are initially alive |
| 1430 | // block size can still be 0 to invalidate accesses |
| 1431 | return expr::mkInt(-1, num_nonlocals); |
| 1432 | } |
| 1433 | |
| 1434 | expr Memory::mkSubByteZExtStoreCond(const Byte &val, const Byte &val2) const { |
| 1435 | bool mk_axiom = &val == &val2; |
no outgoing calls
no test coverage detected