| * This file has no copyright assigned and is placed in the Public Domain.
|
| * This file is part of the w64 mingw-runtime package.
|
| * No warranty is given; refer to the file DISCLAIMER within this package.
|
| The fesetenv function establishes the floating-point environment
|
| represented by the object pointed to by envp. The argument envp
|
| points to an object set by a call to fegetenv or feholdexcept, or
|
| equal the macro FE_DFL_ENV or an implementation-defined environment
|
| macro. Note that fesetenv merely installs the state of the exception
|
| flags represented through its argument, and does not raise these
|
| extern void (*_imp___fpreset)( void ) ;
|
| int fesetenv (const fenv_t * envp)
|
| * fninit initializes the control register to 0x37f,
|
| * the status register to zero and the tag word to 0FFFFh.
|
| * The other registers are unaffected.
|
| else if (envp == FE_PC53_ENV)
|
| * MS _fpreset() does same *except* it sets control word
|
| * to 0x27f (53-bit precison).
|
| * We force calling _fpreset in msvcrt.dll
|
| else if (envp == FE_DFL_ENV)
|
| /* Use the choice made at app startup */
|
| __asm__ ("fldenv %0;" : : "m" (*envp));
|