diff options
Diffstat (limited to 'test/unreachable-code.wast.fromBinary.noDebugInfo')
-rw-r--r-- | test/unreachable-code.wast.fromBinary.noDebugInfo | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/test/unreachable-code.wast.fromBinary.noDebugInfo b/test/unreachable-code.wast.fromBinary.noDebugInfo deleted file mode 100644 index 01aedc451..000000000 --- a/test/unreachable-code.wast.fromBinary.noDebugInfo +++ /dev/null @@ -1,79 +0,0 @@ -(module - (type $0 (func)) - (func $0 (type $0) - (if - (i32.const 1) - (unreachable) - ) - ) - (func $1 (type $0) - (if - (i32.const 1) - (unreachable) - (unreachable) - ) - ) - (func $2 (type $0) - (if - (i32.const 1) - (unreachable) - ) - ) - (func $3 (type $0) - (if - (i32.const 1) - (unreachable) - (unreachable) - ) - ) - (func $4 (type $0) - (nop) - (if - (i32.const 1) - (unreachable) - ) - (nop) - ) - (func $5 (type $0) - (nop) - (if - (i32.const 1) - (unreachable) - (unreachable) - ) - ) - (func $6 (type $0) - (nop) - (if - (i32.const 1) - (unreachable) - ) - (nop) - ) - (func $7 (type $0) - (nop) - (if - (i32.const 1) - (unreachable) - (unreachable) - ) - ) - (func $8 (type $0) - (nop) - (block $label$1 - (nop) - (br $label$1) - ) - (nop) - ) - (func $9 (type $0) - (block $label$1 - (nop) - (block $label$2 - (nop) - (br $label$1) - ) - ) - ) -) - |