Module: wine Branch: master Commit: 16227352a6649375cf6d7fe828ba74bdf28794b4 URL: https://gitlab.winehq.org/wine/wine/-/commit/16227352a6649375cf6d7fe828ba74b...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Mar 7 11:08:01 2023 +0100
ntdll/tests: Remove invalid instruction from KiUserExceptionDispatcher test.
It trips up box86.
---
dlls/ntdll/tests/exception.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c index 94b2ccf61a6..90d90f3b64a 100644 --- a/dlls/ntdll/tests/exception.c +++ b/dlls/ntdll/tests/exception.c @@ -1905,8 +1905,7 @@ static void test_kiuserexceptiondispatcher(void) 0x89, 0x79, 0x0c, /* mov %edi, 0xc(%ecx) */ 0x89, 0x69, 0x10, /* mov %ebp, 0x10(%ecx) */ 0x89, 0x61, 0x14, /* mov %esp, 0x14(%ecx) */ - - 0x67, 0x48, 0x8b, 0x71, 0xf0, /* mov -0x10(%ecx),%esi */ + 0x8b, 0x71, 0xf0, /* mov -0x10(%ecx),%esi */
0xc3, /* ret */ };