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

Signed-off-by: Qian Hong <qhong@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Qian Hong 2015-12-03 00:07:18 +08:00 committed by Alexandre Julliard
parent 6a03e618df
commit 10d080aa8d
1 changed files with 1 additions and 1 deletions

View File

@ -2163,7 +2163,7 @@ static void fpe_handler( int signal, siginfo_t *siginfo, void *sigcontext )
/* TODO:
* Behaviour only tested for divide-by-zero exceptions
* 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",
siginfo->si_code);