summaryrefslogtreecommitdiff
path: root/test/signext.wast.fromBinary
diff options
context:
space:
mode:
Diffstat (limited to 'test/signext.wast.fromBinary')
-rw-r--r--test/signext.wast.fromBinary10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/signext.wast.fromBinary b/test/signext.wast.fromBinary
index 3a7b3017a..0a05eda7b 100644
--- a/test/signext.wast.fromBinary
+++ b/test/signext.wast.fromBinary
@@ -5,27 +5,27 @@
(local $1 i64)
(drop
(i32.extend8_s
- (get_local $0)
+ (local.get $0)
)
)
(drop
(i32.extend16_s
- (get_local $0)
+ (local.get $0)
)
)
(drop
(i64.extend8_s
- (get_local $1)
+ (local.get $1)
)
)
(drop
(i64.extend16_s
- (get_local $1)
+ (local.get $1)
)
)
(drop
(i64.extend32_s
- (get_local $1)
+ (local.get $1)
)
)
)