blob: 764c16470dfe7584fdd157511a10c2de748fd8d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
(module
(func $a
(local $x i32)
(local $y f64)
;; x appears twice
(drop (local.get $x))
(drop (local.get $x))
(drop (local.get $y))
)
(func $b
(local $x i32)
(local $y f64)
;; y appears twice, so it will be reordered to be first, and that should be
;; preserved in the binary format
(drop (local.get $x))
(drop (local.get $y))
(drop (local.get $y))
)
)
|