diff options
Diffstat (limited to 'test/passes/licm.wast')
-rw-r--r-- | test/passes/licm.wast | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/passes/licm.wast b/test/passes/licm.wast index d4227525b..349739ce8 100644 --- a/test/passes/licm.wast +++ b/test/passes/licm.wast @@ -1,4 +1,5 @@ (module + (global $glob (mut i32) (i32.const 1)) (func $loop1 (loop $loop (drop (i32.const 10)) @@ -388,5 +389,13 @@ (br_if $loop (i32.const 1)) ) ) + (func $global + (local $x i32) + (loop $loop + (set_local $x (get_global $glob)) + (drop (get_local $x)) + (br_if $loop (get_local $x)) + ) + ) ) |