mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-28 16:11:32 +00:00
Merge remote-tracking branch 'origin/feature/polymorphic-v2' into feature/polymorphic-v2
This commit is contained in:
@ -484,7 +484,7 @@ mod tests {
|
||||
}
|
||||
}
|
||||
|
||||
let expected = (0..=n as u64).fold(0u64, |a, b| a + b);
|
||||
let expected = (0..=n as u64).sum();
|
||||
prev = Some((ptr, expected))
|
||||
}
|
||||
}
|
||||
|
@ -330,7 +330,7 @@ impl<'a> ErasedFunc<'a> {
|
||||
Type::F32 => Value::F32(f32::from_bits(*args.offset(i as _) as u32)),
|
||||
Type::F64 => Value::F64(f64::from_bits(*args.offset(i as _) as u64)),
|
||||
Type::V128 => {
|
||||
panic!("enter_host_polymorphic: 128-bit types are not supported")
|
||||
todo!("enter_host_polymorphic: 128-bit types are not supported")
|
||||
}
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user