mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1115217 - Fix a jit-test SIMD test to disable itself when SIMD is not available r=bbouvier
This commit is contained in:
parent
3c27e21f16
commit
54223c358a
@ -1,3 +1,8 @@
|
|||||||
|
if (typeof SIMD === 'undefined' || !isSimdAvailable()) {
|
||||||
|
print("won't run tests as simd extensions aren't activated yet");
|
||||||
|
quit(0);
|
||||||
|
}
|
||||||
|
|
||||||
(function(global) {
|
(function(global) {
|
||||||
"use asm";
|
"use asm";
|
||||||
var frd = global.Math.fround;
|
var frd = global.Math.fround;
|
||||||
|
Loading…
Reference in New Issue
Block a user