blob: 00672ed0f4568dc759120d14e31730cf3594ec93 [file]
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
function AsmModule() {
"use asm";
function f(d) {
d = d|0;
d=(d|0)==1;
if(d){
d = 10;
}
return d|0;
}
return {
f:f
}
}
var asmModule = AsmModule();
print(asmModule.f(2));
print(asmModule.f(2));