Update lib/runtime-core/src/typed_func.rs

Co-Authored-By: Ivan Enderlin <ivan.enderlin@wanadoo.fr>
This commit is contained in:
Heyang Zhou 2020-02-26 17:01:16 +08:00 committed by GitHub
parent 262d431b49
commit 292e42addc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
}
}
})