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