Skip to content

checkasm: Fix catching crashes on Windows on ARM

Martin Storsjö requested to merge mstorsjo/dav1d:checkasm-setjmp-windows into master

longjmp on Windows uses SEH to unwind on ARM/ARM64 too, just like on x86_64, thus use RtlCaptureContext/RtlRestoreContext instead of setjmp/longjmp on those architectures as well.

Merge request reports