diff options
Diffstat (limited to 'test/passes/remove-unused-names_optimize-instructions_all-features.txt')
-rw-r--r-- | test/passes/remove-unused-names_optimize-instructions_all-features.txt | 125 |
1 files changed, 0 insertions, 125 deletions
diff --git a/test/passes/remove-unused-names_optimize-instructions_all-features.txt b/test/passes/remove-unused-names_optimize-instructions_all-features.txt deleted file mode 100644 index cf1e44132..000000000 --- a/test/passes/remove-unused-names_optimize-instructions_all-features.txt +++ /dev/null @@ -1,125 +0,0 @@ -(module - (type $none_=>_none (func)) - (type $i32_=>_none (func (param i32))) - (event $e (attr 0) (param i32)) - (func $dummy - (nop) - ) - (func $getFallthrough - (local $x0 i32) - (local $x1 i32) - (local $x2 i32) - (local $x3 i32) - (local $x4 i32) - (local.set $x0 - (try (result i32) - (do - (i32.const 1) - ) - (catch_all - (i32.const 3) - ) - ) - ) - (drop - (local.get $x0) - ) - (local.set $x1 - (try (result i32) - (do - (call $dummy) - (i32.const 1) - ) - (catch_all - (i32.const 3) - ) - ) - ) - (drop - (i32.and - (local.get $x1) - (i32.const 7) - ) - ) - (local.set $x2 - (try (result i32) - (do - (try - (do - (throw $e - (i32.const 0) - ) - ) - (catch $e - (drop - (pop i32) - ) - ) - ) - (i32.const 1) - ) - (catch $e - (drop - (pop i32) - ) - (i32.const 3) - ) - ) - ) - (drop - (i32.and - (local.get $x2) - (i32.const 7) - ) - ) - (local.set $x3 - (try (result i32) - (do - (try - (do - (throw $e - (i32.const 0) - ) - ) - (catch_all - (nop) - ) - ) - (i32.const 1) - ) - (catch_all - (i32.const 3) - ) - ) - ) - (drop - (local.get $x3) - ) - (local.set $x4 - (try (result i32) - (do - (try - (do - (nop) - ) - (catch_all - (throw $e - (i32.const 0) - ) - ) - ) - (i32.const 1) - ) - (catch_all - (i32.const 3) - ) - ) - ) - (drop - (i32.and - (local.get $x4) - (i32.const 7) - ) - ) - ) -) |