tests: Run all tests with the default FPU control word.
This commit is contained in:
parent
89ad1f2615
commit
b14cfdeea4
|
@ -1329,8 +1329,6 @@ static void test_ThreadErrorMode(void)
|
||||||
pSetThreadErrorMode(oldmode, NULL);
|
pSetThreadErrorMode(oldmode, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
void _fpreset(void) {} /* override the mingw fpu init code */
|
|
||||||
|
|
||||||
static inline void set_fpu_cw(WORD cw)
|
static inline void set_fpu_cw(WORD cw)
|
||||||
{
|
{
|
||||||
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
#if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
|
||||||
|
|
|
@ -590,6 +590,8 @@ static LONG CALLBACK exc_filter( EXCEPTION_POINTERS *ptrs )
|
||||||
return EXCEPTION_EXECUTE_HANDLER;
|
return EXCEPTION_EXECUTE_HANDLER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _fpreset(void) {} /* override the mingw fpu init code */
|
||||||
|
|
||||||
/* main function */
|
/* main function */
|
||||||
int main( int argc, char **argv )
|
int main( int argc, char **argv )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue