Commit 10d080aa authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard

ntdll: Silence useless fixme message when handling SIMD floating point invalid operation exception.

parent 6a03e618
...@@ -2163,7 +2163,7 @@ static void fpe_handler( int signal, siginfo_t *siginfo, void *sigcontext ) ...@@ -2163,7 +2163,7 @@ static void fpe_handler( int signal, siginfo_t *siginfo, void *sigcontext )
/* TODO: /* TODO:
* Behaviour only tested for divide-by-zero exceptions * Behaviour only tested for divide-by-zero exceptions
* Check for other SIMD exceptions as well */ * Check for other SIMD exceptions as well */
if(siginfo->si_code != FPE_FLTDIV) if(siginfo->si_code != FPE_FLTDIV && siginfo->si_code != FPE_FLTINV)
FIXME("untested SIMD exception: %#x. Might not work correctly\n", FIXME("untested SIMD exception: %#x. Might not work correctly\n",
siginfo->si_code); siginfo->si_code);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment