diff options
Diffstat (limited to 'test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast')
-rw-r--r-- | test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast b/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast deleted file mode 100644 index c355a2bf1..000000000 --- a/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.wast +++ /dev/null @@ -1,19 +0,0 @@ -(module - (event $e0 (attr 0) (param i32)) - - (func $eh (local $exn exnref) - (try - (throw $e0 (i32.const 0)) - (catch - (local.set $exn (exnref.pop)) - (drop - (block $l0 (result i32) - (rethrow - (br_on_exn $l0 $e0 (local.get $exn)) - ) - ) - ) - ) - ) - ) -) |