Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Improvements to existing tests
  • Loading branch information
kripken committed Feb 12, 2024
commit 84038f44b2ffc424a0fc33c47e3e4becdae6548c
30 changes: 14 additions & 16 deletions test/passes/Oz_fuzz-exec_all-features.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,15 @@
)
(func $arrays (type $void_func) (; has Stack IR ;)
(local $0 (ref $bytes))
(call $log
(array.len
(local.tee $0
(array.new $bytes
(i32.const 42)
(i32.const 50)
)
)
(local.set $0
(array.new $bytes
(i32.const 42)
(i32.const 50)
)
)
(call $log
(i32.const 50)
)
(call $log
(array.get_u $bytes
(local.get $0)
Expand Down Expand Up @@ -271,16 +270,15 @@
)
(func $array.new_fixed (type $void_func) (; has Stack IR ;)
(local $0 (ref $bytes))
(call $log
(array.len
(local.tee $0
(array.new_fixed $bytes 2
(i32.const 42)
(i32.const 50)
)
)
(local.set $0
(array.new_fixed $bytes 2
(i32.const 42)
(i32.const 50)
)
)
(call $log
(i32.const 2)
)
(call $log
(array.get_u $bytes
(local.get $0)
Expand Down