summaryrefslogtreecommitdiff
path: root/test/passes/safe-heap_enable-threads_enable-simd.wast
Commit message (Collapse)AuthorAgeFilesLines
* Use the standard shared memory text format (#6200)Thomas Lively2024-01-031-2/+2
| | | | | Update the legacy text parser and all tests to use the standard text format for shared memories, e.g. `(memory $m 1 1 shared)` rather than `(memory $m (shared 1 1))`. Also remove support for non-standard in-line "data" or "segment" declarations. This change makes the tests more compatible with the new text parser, which only supports the standard format.
* Remove legacy DYNAMICTOP_PTR support from SafeHeap (#3425)Sam Clegg2020-12-041-1/+0
|
* Change default feature set to MVP (#1993)Thomas Lively2019-04-161-0/+56
In the absence of the target features section or command line flags. When there are command line flags, it is an error if they do not exactly match the target features section, except if --detect-features has been provided. Also adds a --print-features pass to print the command line flags for all enabled options and uses it to make the feature tests more rigorous.