blob: e946933b5eaf7ac5bf6dcbad8d7326c7345ea7e4 [file] [log] [blame]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function module0(stdlib) {
"use asm"
var u8 = stdlib.SIMD.Uint16x8;
var u8check = u8.check;
function foo() {
var abc = u8(1,1,1,1,1,1,1,1);
return u8check(abc);
}
return { foo:foo }
}
var c = module0(this);