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:
parent
6a03e618df
commit
10d080aa8d
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue