blob: 1f92db1129fc298a882a0db7a7b3838fc2517b12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
let { exports } = new WebAssembly.Instance(new WebAssembly.Module(
wasmTextToBinary(`
(module
(func (export "g")
(drop
(block (result i32)
(i32.clz (i32.const 1))
(if
(i32.const 1)
(return))))))`)));
exports.g();
|