[WASM] mem_cmp added to the Wasm runtime (#7539)

* mem_cmp added to the Wasm runtime

* schedule.wasm.mem_copy to schedule.wasm.mem_cmp for mem_cmp
This commit is contained in:
Alexey
2018-01-15 17:24:24 +03:00
committed by Nikolay Volf
parent ad14e656f6
commit d927320719
6 changed files with 37 additions and 0 deletions

View File

@@ -92,6 +92,11 @@ pub const SIGNATURES: &'static [UserFunctionDescriptor] = &[
&[I32; 3],
Some(I32),
),
Static(
"_ext_memcmp",
&[I32; 3],
Some(I32),
),
Static(
"_ext_memcpy",
&[I32; 3],