Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
Skip instantiation of large tables
Browse files Browse the repository at this point in the history
  • Loading branch information
Eva Herencsarova committed Nov 14, 2024
1 parent 374edaa commit 759c587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/core/table.wast
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(module (table 0 1 funcref))
(module (table 1 256 funcref))
(module (table 0 65536 funcref))
(module (table 0xffff_ffff funcref))
(module definition (table 0xffff_ffff funcref))
(module (table 0 0xffff_ffff funcref))

(module (table 1 (ref null func)))
Expand Down Expand Up @@ -55,7 +55,7 @@
(module (table i64 0 65536 funcref))
(module (table i64 0 0xffff_ffff funcref))
(module (table i64 0 0x1_0000_0000 funcref))
(module (table i64 0xffff_ffff_ffff_ffff funcref))
(module definition (table i64 0xffff_ffff_ffff_ffff funcref))
(module (table i64 0 0xffff_ffff_ffff_ffff funcref))

(module (table i64 0 funcref) (table i64 0 funcref))
Expand Down

0 comments on commit 759c587

Please sign in to comment.