We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4865c49 commit 94631d4Copy full SHA for 94631d4
crates/wasmi/src/engine/executor/handler/dispatch.rs
@@ -24,9 +24,9 @@ pub fn fetch_handler(ip: Ip) -> (Ip, Handler) {
24
false => {
25
let (ip, addr) = unsafe { ip.decode::<usize>() };
26
let handler = unsafe {
27
- ::core::mem::transmute::<*const (), Handler>(
28
- ::core::ptr::with_exposed_provenance(addr)
29
- )
+ ::core::mem::transmute::<*const (), Handler>(::core::ptr::with_exposed_provenance(
+ addr,
+ ))
30
};
31
(ip, handler)
32
}
0 commit comments