blob: ed4231aca77bfc2abf0067c382eca0c649188659 [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 u4 = stdlib.SIMD.Uint32x4;
var u4check = u4.check;
function foo(abc) {
abc = u4check(abc);
return ;
}
return { foo:foo }
}
var c = module0(this);