Skip to content

Commit 6559430

Browse files
committed
Merge branch 'main' into unsubtyping-optimize-descs
2 parents 2b0df59 + 7b18dd1 commit 6559430

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

scripts/fuzz_opt.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,7 +1536,7 @@ def can_run_on_wasm(self, wasm):
15361536
# files, which adds coverage for ClusterFuzz (which sometimes runs two wasm
15371537
# files in that way).
15381538
class Split(TestCaseHandler):
1539-
frequency = 1 # TODO: adjust lower when we actually enable this
1539+
frequency = 0.1
15401540

15411541
def handle(self, wasm):
15421542
# get the list of function names, some of which we will decide to split
@@ -2121,8 +2121,7 @@ def handle(self, wasm):
21212121
TrapsNeverHappen(),
21222122
CtorEval(),
21232123
Merge(),
2124-
# TODO: enable when stable enough, and adjust |frequency| (see above)
2125-
# Split(),
2124+
Split(),
21262125
RoundtripText(),
21272126
ClusterFuzz(),
21282127
Two(),

test/lit/passes/unsubtyping-desc.wast

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
;; CHECK: (type $2 (func (param (ref null (exact $A.desc)))))
6060

61-
;; CHECK: (func $nullable-descs (type $2) (param $A.desc (ref null (exact $A.desc)))
61+
;; CHECK: (func $nullable-desc (type $2) (param $A.desc (ref null (exact $A.desc)))
6262
;; CHECK-NEXT: (local $1 (ref (exact $A.desc)))
6363
;; CHECK-NEXT: (drop
6464
;; CHECK-NEXT: (block (result (ref (exact $A)))
@@ -91,7 +91,7 @@
9191
)
9292
;; CHECK: (type $2 (func (param (ref (exact $A.desc)))))
9393

94-
;; CHECK: (func $nullable-descs (type $2) (param $A.desc (ref (exact $A.desc)))
94+
;; CHECK: (func $nonnullable-desc (type $2) (param $A.desc (ref (exact $A.desc)))
9595
;; CHECK-NEXT: (drop
9696
;; CHECK-NEXT: (block (result (ref (exact $A)))
9797
;; CHECK-NEXT: (struct.new_default $A)

0 commit comments

Comments
 (0)