From 963844b787f0f120547a01807dd5e67f2986c9a3 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Fri, 22 Mar 2024 13:49:14 +0000 Subject: [PATCH] Use `arch::wasm::unreachable` instead of `arch::wasm32::unreachable` --- library/unwind/src/wasm.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/unwind/src/wasm.rs b/library/unwind/src/wasm.rs index b06671bcb8309..45dc622dd66c2 100644 --- a/library/unwind/src/wasm.rs +++ b/library/unwind/src/wasm.rs @@ -59,7 +59,7 @@ pub unsafe fn _Unwind_RaiseException(exception: *mut _Unwind_Exception) -> _Unwi wasm_throw(0, exception.cast()) } else { let _ = exception; - core::arch::wasm32::unreachable() + core::arch::wasm::unreachable() } } }