| 12345678910111213141516 |
- //-------------------------------------------------------------------------------------------------------
- // 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);
|