| 895 | } |
| 896 | |
| 897 | void util_deallocEpsilonSensitiveHeapFlag(int* ptr) { |
| 898 | |
| 899 | // nothing to do if the heap flag wasn't allocated; |
| 900 | // it was never added to the list nor needs freeing |
| 901 | if (!mem_isAllocated(ptr)) |
| 902 | return; |
| 903 | |
| 904 | globalStructFieldPtrs.remove(ptr); |
| 905 | cpu_deallocHeapFlag(ptr); |
| 906 | } |
| 907 | |
| 908 | void util_setEpsilonSensitiveHeapFlagsToUnknown() { |
| 909 |
no test coverage detected