summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/SIMD/bug1273483.js
blob: 3c9386b4f4664e461a70ed13335f73024f3d5979 (plain)
1
2
3
4
5
6
7
8
9
if (typeof SIMD === 'undefined')
    quit();

Int8x16 = SIMD.Int8x16;
var Int32x4 = SIMD.Int32x4;
function testSwizzleForType(type) type();
testSwizzleForType(Int8x16);
function testSwizzleInt32x4() testSwizzleForType(Int32x4);
testSwizzleInt32x4();