summaryrefslogtreecommitdiff
path: root/test/lit/if-then-else.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/if-then-else.wast')
-rw-r--r--test/lit/if-then-else.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/if-then-else.wast b/test/lit/if-then-else.wast
index 9d13cea92..7fa59fad0 100644
--- a/test/lit/if-then-else.wast
+++ b/test/lit/if-then-else.wast
@@ -30,14 +30,14 @@
;; CHECK-NEXT: )
(func $test (param i32) (result i32)
(if
- (local.get $0)
+ (local.get 0)
(then)
(else
(return (i32.const 0))
)
)
(if
- (local.get $0)
+ (local.get 0)
(then
(return
(i32.const 1)