blob: a7c34c66bd41890a0a6bfbb91dfb7f29ddabdeba [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 u16 = stdlib.SIMD.Uint8x16;
var u16check = u16.check;
function foo() {
var abc = u16(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1);
return u16check(abc);
}
return { foo:foo }
}
var c = module0(this);