diff options
Diffstat (limited to 'test/unreachable-pops.wasm.fromBinary')
-rw-r--r-- | test/unreachable-pops.wasm.fromBinary | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/unreachable-pops.wasm.fromBinary b/test/unreachable-pops.wasm.fromBinary new file mode 100644 index 000000000..4e14995cf --- /dev/null +++ b/test/unreachable-pops.wasm.fromBinary @@ -0,0 +1,10 @@ +(module + (type $0 (func (result i32))) + (memory $0 0) + (func $0 (type $0) (result i32) + (block $label$0 (result i32) + (unreachable) + ) + ) +) + |