summaryrefslogtreecommitdiff
path: root/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.txt')
-rw-r--r--test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.txt47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.txt b/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.txt
deleted file mode 100644
index 8e9dfc415..000000000
--- a/test/passes/generate-stack-ir_optimize-stack-ir_print-stack-ir_enable-exception-handling.txt
+++ /dev/null
@@ -1,47 +0,0 @@
-(module
- (type $none_=>_none (func))
- (type $i32_=>_none (func (param i32)))
- (event $e0 (attr 0) (param i32))
- (func $eh (; 0 ;)
- (local $exn exnref)
- try
- i32.const 0
- throw $e0
- catch
- local.set $exn
- block $l0 (result i32)
- local.get $exn
- br_on_exn $l0 $e0
- rethrow
- end
- drop
- end
- )
-)
-(module
- (type $none_=>_none (func))
- (type $i32_=>_none (func (param i32)))
- (event $e0 (attr 0) (param i32))
- (func $eh (; 0 ;) (; has Stack IR ;)
- (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)
- )
- )
- )
- )
- )
- )
- )
-)