summaryrefslogtreecommitdiff
path: root/test/ctor-eval/stack-direction.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/ctor-eval/stack-direction.wast')
-rw-r--r--test/ctor-eval/stack-direction.wast10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/ctor-eval/stack-direction.wast b/test/ctor-eval/stack-direction.wast
index ebd6ef3fc..38465557e 100644
--- a/test/ctor-eval/stack-direction.wast
+++ b/test/ctor-eval/stack-direction.wast
@@ -2,25 +2,25 @@
(type $0 (func))
(import "env" "memory" (memory $1 256 256))
(import "env" "STACKTOP" (global $gimport$0 i32))
- (global $global$0 (mut i32) (get_global $gimport$0))
+ (global $global$0 (mut i32) (global.get $gimport$0))
(export "__post_instantiate" (func $0))
;; if the stack goes **down**, this may seem to write to memory we care about
(func $0 (; 0 ;) (type $0)
(local $0 i32)
(i32.store offset=12
- (tee_local $0
+ (local.tee $0
(i32.sub
- (get_global $global$0)
+ (global.get $global$0)
(i32.const 16)
)
)
(i32.const 10)
)
(i32.store offset=12
- (get_local $0)
+ (local.get $0)
(i32.add
(i32.load offset=12
- (get_local $0)
+ (local.get $0)
)
(i32.const 1)
)