зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1201124: Protect SIMD on arm to prevent bustage; r=me
This commit is contained in:
Родитель
0fea3fd083
Коммит
7566342dc7
|
@ -2,8 +2,12 @@
|
|||
load(libdir + "asm.js");
|
||||
load(libdir + "asserts.js");
|
||||
|
||||
if (typeof newGlobal !== 'function')
|
||||
if (typeof newGlobal !== 'function' ||
|
||||
!isSimdAvailable() ||
|
||||
typeof SIMD === 'undefined')
|
||||
{
|
||||
quit();
|
||||
}
|
||||
|
||||
var stdlib = new (newGlobal().Proxy)(this, new Proxy({
|
||||
simdGet: 0,
|
||||
|
|
Загрузка…
Ссылка в новой задаче