Skip to content

Commit

Permalink
Use arch::wasm::unreachable instead of arch::wasm32::unreachable
Browse files Browse the repository at this point in the history
  • Loading branch information
newpavlov authored Mar 22, 2024
1 parent eff958c commit 963844b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/unwind/src/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
}

0 comments on commit 963844b

Please sign in to comment.