diff options
Diffstat (limited to 'test/hello_world.wast')
-rw-r--r-- | test/hello_world.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/hello_world.wast b/test/hello_world.wast index 4a0f62082..8efc9e227 100644 --- a/test/hello_world.wast +++ b/test/hello_world.wast @@ -4,8 +4,8 @@ (export "add" (func $add)) (func $add (; 0 ;) (type $0) (param $x i32) (param $y i32) (result i32) (i32.add - (get_local $x) - (get_local $y) + (local.get $x) + (local.get $y) ) ) ) |