summaryrefslogtreecommitdiff
path: root/test/reduce/destructive.wast
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-01-07 13:24:58 -0800
committerGitHub <noreply@github.com>2019-01-07 13:24:58 -0800
commit7d94900ded8e2e5ce8ef8ee2687528531d8f2a97 (patch)
treed8bba13d306b0c5ecba384384e602e6cccc83015 /test/reduce/destructive.wast
parent6f91af190effd7b8a5969314dd4fb3d2ec540524 (diff)
downloadbinaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.gz
binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.tar.bz2
binaryen-7d94900ded8e2e5ce8ef8ee2687528531d8f2a97.zip
Massive renaming (#1855)
Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
Diffstat (limited to 'test/reduce/destructive.wast')
-rw-r--r--test/reduce/destructive.wast2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/reduce/destructive.wast b/test/reduce/destructive.wast
index 65786502f..2670fccf9 100644
--- a/test/reduce/destructive.wast
+++ b/test/reduce/destructive.wast
@@ -1,7 +1,7 @@
(module
(export "x" (func $x))
(func $x (param $x i32) (result i32)
- (if (i32.eq (get_local $x) (i32.const 98658746))
+ (if (i32.eq (local.get $x) (i32.const 98658746))
(unreachable) ;; this can be removed destructively, since we do not sent this param
)
(i32.const 100)