kparzysz-quic opened a new pull request #8859: URL: https://github.com/apache/tvm/pull/8859
A crash occurs when automatically deleting an instance of `CodeGenHexagon` because the `LLVMContext` object has already been freed. Objects of both types are created using `unique_ptr`, but the object managed by the `LLVMContext` `unique_ptr` is passed to `CodeGenHexagon` object (not as a `unique_ptr`). This crash is fixed by moving the declaration of the `LLVMContext` object before the `CodeGenHexagon` object. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
