diff --git a/test/core/linking.wast b/test/core/linking.wast index 578a8c1881..994e0f49d0 100644 --- a/test/core/linking.wast +++ b/test/core/linking.wast @@ -129,20 +129,6 @@ ) -(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))) -) - - ;; Tables (module $Mt diff --git a/test/core/simd/simd_linking.wast b/test/core/simd/simd_linking.wast new file mode 100644 index 0000000000..1a1d16355e --- /dev/null +++ b/test/core/simd/simd_linking.wast @@ -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))) +)