| 1234567891011121314151617 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- /*
- fabs from ucrtbase.dll doesn't restore the FPU Control word correctly when passed a NaN.
- This is exposed if we WScript.LoadScriptFile() code with Math.Abs(NaN) in it.
- Causing an assertion failure in SmartFPUControl. The change special-handles NaN without calling fabs
- */
- WScript.LoadScriptFile("fabs2.js");
- WScript.LoadScriptFile("fabs2asmjs.js");
- WScript.Echo('PASS');
|