diff options
Diffstat (limited to 'test/example/c-api-kitchen-sink.txt.txt')
-rw-r--r-- | test/example/c-api-kitchen-sink.txt.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/example/c-api-kitchen-sink.txt.txt b/test/example/c-api-kitchen-sink.txt.txt index 7f281bd67..dc35b1f04 100644 --- a/test/example/c-api-kitchen-sink.txt.txt +++ b/test/example/c-api-kitchen-sink.txt.txt @@ -16,10 +16,10 @@ (start $starter) (func "$kitchen()sinker" (type $iiIfF) (param $0 i32) (param $1 i64) (param $2 f32) (param $3 f64) (result i32) (local $4 i32) - (block $the-body i32 + (block $the-body (result i32) (block $the-nothing (drop - (block $the-value i32 + (block $the-value (result i32) (drop (i32.clz (i32.const -10) @@ -410,12 +410,12 @@ ) ) (drop - (loop $in i32 + (loop $in (result i32) (i32.const 0) ) ) (drop - (loop i32 + (loop (result i32) (i32.const 0) ) ) |