forked from WebAssembly/spec
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] Move SIMD linking test to simd dir (WebAssembly#1610)
- Loading branch information
Showing
2 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
(module | ||
(global (export "g-v128") v128 (v128.const i64x2 0 0)) | ||
(global (export "mg-v128") (mut v128) (v128.const i64x2 0 0)) | ||
) | ||
(register "Mv128") | ||
|
||
(module | ||
;; TODO: Reactivate once the fix for https://bugs.chromium.org/p/v8/issues/detail?id=13732 | ||
;; has made it to the downstream node.js that we use on CI. | ||
;; (import "Mv128" "g-v128" (global v128)) | ||
(import "Mv128" "mg-v128" (global (mut v128))) | ||
) |