Skip to content
This repository was archived by the owner on Apr 25, 2025. It is now read-only.

Commit d1b1033

Browse files
committed
Remove tests using generalised constant global.get
1 parent 0c2824e commit d1b1033

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

test/core/data.wast

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,6 @@
8181
(data (global.get $g) "a")
8282
)
8383

84-
(module (memory 1) (global i32 (i32.const 0)) (data (global.get 0) "a"))
85-
(module (memory 1) (global $g i32 (i32.const 0)) (data (global.get $g) "a"))
86-
8784

8885
;; Corner cases
8986

test/core/elem.wast

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,6 @@
175175
(assert_return (invoke "call-7") (i32.const 65))
176176
(assert_return (invoke "call-9") (i32.const 66))
177177

178-
(module (table 1 funcref) (global i32 (i32.const 0)) (elem (global.get 0) $f) (func $f))
179-
(module (table 1 funcref) (global $g i32 (i32.const 0)) (elem (global.get $g) $f) (func $f))
180-
181178

182179
;; Corner cases
183180

test/core/global.wast

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -348,9 +348,6 @@
348348
"unknown global"
349349
)
350350

351-
(module (global i32 (i32.const 0)) (global i32 (global.get 0)))
352-
(module (global $g i32 (i32.const 0)) (global i32 (global.get $g)))
353-
354351
(assert_invalid
355352
(module (global i32 (global.get 1)) (global i32 (i32.const 0)))
356353
"unknown global"

0 commit comments

Comments
 (0)