summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/SIMD/bug1123631.js
blob: 28c0e0aa157f6c2182f40ecb1d115fc52cda9b4e (plain)
1
2
3
4
5
6
7
8
9
if (!this.hasOwnProperty("SIMD"))
  quit();

var Float64x2 = SIMD.Float64x2;
function test() {
  var a = Float64x2(1, 2);
}
test();
test();