summaryrefslogtreecommitdiff
path: root/test/passes/O1_print-stack-ir.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/passes/O1_print-stack-ir.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/passes/O1_print-stack-ir.wast')
-rw-r--r--test/passes/O1_print-stack-ir.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/passes/O1_print-stack-ir.wast b/test/passes/O1_print-stack-ir.wast
index a53d9d51e..5c03b5e23 100644
--- a/test/passes/O1_print-stack-ir.wast
+++ b/test/passes/O1_print-stack-ir.wast
@@ -6,9 +6,9 @@
(call $stacky-help (i32.const 0))
(i32.eqz
(block (result i32) ;; after we use the stack instead of the local, we can remove this block
- (set_local $temp (call $stacky-help (i32.const 1)))
+ (local.set $temp (call $stacky-help (i32.const 1)))
(drop (call $stacky-help (i32.const 2)))
- (get_local $temp)
+ (local.get $temp)
)
)
)