blob: 7ab1817e9d1eb48d7419648b9b342b281072a76e [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(abc) {
abc = u8check(abc);
return ;
}
return { foo:foo }
}
var c = module0(this);