| 105 | } |
| 106 | |
| 107 | static ASMJIT_INLINE void Section_release_buffer(Section* section) noexcept { |
| 108 | if (Support::bool_and(section->_buffer.data() != nullptr, !section->_buffer.is_external())) { |
| 109 | ::free(section->_buffer._data); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | // CodeHolder - Utilities |
| 114 | // ====================== |
no test coverage detected