Skip to content

Commit 6ef7a67

Browse files
authored
Rollup merge of #122878 - newpavlov:patch-2, r=Mark-Simulacrum
Use `arch::wasm::unreachable` instead of `arch::wasm32::unreachable` Closes #122877
2 parents 9d1610d + 963844b commit 6ef7a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/unwind/src/wasm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub unsafe fn _Unwind_RaiseException(exception: *mut _Unwind_Exception) -> _Unwi
5959
wasm_throw(0, exception.cast())
6060
} else {
6161
let _ = exception;
62-
core::arch::wasm32::unreachable()
62+
core::arch::wasm::unreachable()
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)