Skip to content

Commit

Permalink
Fix some more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Jan 10, 2022
1 parent d68ceed commit 39423ed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/multi-value-xform/tests/align.wat
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
global.set 0)
(func $foo (type 1) (param i32))
(memory (;0;) 1)
(global (;0;) (mut i32) (i32.const 0))
(global (;0;) (mut i32) i32.const 0)
(export "foo" (func $#func0<foo_multivalue_shim>)))
;)
2 changes: 1 addition & 1 deletion crates/multi-value-xform/tests/many.wat
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
global.set 0)
(func $foo (type 1) (param i32))
(memory (;0;) 1)
(global (;0;) (mut i32) (i32.const 0))
(global (;0;) (mut i32) i32.const 0)
(export "foo" (func $#func0<foo_multivalue_shim>)))
;)
2 changes: 1 addition & 1 deletion crates/multi-value-xform/tests/simple.wat
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
(func $f32 (type 4) (param i32))
(func $f64 (type 4) (param i32))
(memory (;0;) 1)
(global (;0;) (mut i32) (i32.const 0))
(global (;0;) (mut i32) i32.const 0)
(export "i32" (func $#func0<i32_multivalue_shim>))
(export "i64" (func $#func1<i64_multivalue_shim>))
(export "f32" (func $#func2<f32_multivalue_shim>))
Expand Down

0 comments on commit 39423ed

Please sign in to comment.