SeqCst->Relaxed in panic_unwind/emcc.

SeqCst is unnecessary here.
This commit is contained in:
Mara Bos 2024-03-19 14:56:48 +01:00
parent a2c74b8445
commit 5e4cc6f694

View File

@ -84,7 +84,7 @@ struct CatchData {
super::__rust_foreign_exception();
}
let was_caught = (*adjusted_ptr).caught.swap(true, Ordering::SeqCst);
let was_caught = (*adjusted_ptr).caught.swap(true, Ordering::Relaxed);
if was_caught {
// Since cleanup() isn't allowed to panic, we just abort instead.
intrinsics::abort();