optimize hline function, update wasmtime

This commit is contained in:
2022-06-12 14:28:01 +02:00
parent e0450c9039
commit caeaa82787
12 changed files with 845 additions and 656 deletions

View File

@@ -962,6 +962,8 @@ fn remap_function(
De::I64TruncSatF32U => En::I64TruncSatF32U,
De::I64TruncSatF64S => En::I64TruncSatF64S,
De::I64TruncSatF64U => En::I64TruncSatF64U,
De::MemoryCopy { src, dst } => En::MemoryCopy { src, dst },
De::MemoryFill { mem } => En::MemoryFill(mem),
other => bail!("Unsupported instruction {:?}", other),
});
}