diff options
Diffstat (limited to 'test/example/c-api-hello-world.txt')
-rw-r--r-- | test/example/c-api-hello-world.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/example/c-api-hello-world.txt b/test/example/c-api-hello-world.txt index 41cfa559c..21a7c2a16 100644 --- a/test/example/c-api-hello-world.txt +++ b/test/example/c-api-hello-world.txt @@ -1,6 +1,6 @@ (module - (type $iii (func (param i32 i32) (result i32))) - (func $adder (; 0 ;) (type $iii) (param $0 i32) (param $1 i32) (result i32) + (type $i32_i32_=>_i32 (func (param i32 i32) (result i32))) + (func $adder (; 0 ;) (param $0 i32) (param $1 i32) (result i32) (i32.add (local.get $0) (local.get $1) |