blob: 23d944a0cffa343e0abed741c785fe5a4dcaeec8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; RUN: wasm-opt %s --instrument-locals -all -S -o - | filecheck %s
(module
;; CHECK: (tag $e (param i32))
(tag $e (param i32))
;; CHECK: (func $test (type $8)
;; CHECK-NEXT: (local $x i32)
;; CHECK-NEXT: (try
;; CHECK-NEXT: (do
;; CHECK-NEXT: )
;; CHECK-NEXT: (catch $e
;; CHECK-NEXT: (local.set $x
;; CHECK-NEXT: (pop i32)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $test
(local $x i32)
(try
(do)
(catch $e
;; Pop instructions should not be instrumented
(local.set $x (pop i32))
)
)
)
)
|