From: Martin Storsjö <martin(a)martin.st> This test case was updated in 41d7baa0139252f66042313f366b199e710f7b7b. The behaviour of this testcase has changed; the older behaviour could still be reproduced on Windows 11 version 10.0.22000.2176, but on 10.0.26100.6899 we see the newer behaviour. (As the test was updated in Feb 2024, it probably changed in some earlier build than that.) Update the function definition to match the actual observed behaviour. --- dlls/ntdll/tests/unwind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/ntdll/tests/unwind.c b/dlls/ntdll/tests/unwind.c index 558ae07ba20..1ce98bc0864 100644 --- a/dlls/ntdll/tests/unwind.c +++ b/dlls/ntdll/tests/unwind.c @@ -2237,11 +2237,11 @@ static void test_virtual_unwind_arm64(void) 0xe6, 0x9f, 0x03, 0xa9, /* 10: stp x6, x7, [sp, #56] */ 0xff, 0x83, 0x00, 0xd1, /* 14: sub sp, sp, #32 */ 0x1f, 0x20, 0x03, 0xd5, /* 18: nop */ - 0xff, 0x83, 0x00, 0x91, /* 1c: add sp, sp, #32 */ + 0x1f, 0x20, 0x03, 0xd5, /* 1c: nop */ 0x1f, 0x20, 0x03, 0xd5, /* 20: nop */ 0x1f, 0x20, 0x03, 0xd5, /* 24: nop */ 0x1f, 0x20, 0x03, 0xd5, /* 28: nop */ - 0x1f, 0x20, 0x03, 0xd5, /* 2c: nop */ + 0xff, 0x83, 0x00, 0x91, /* 2c: add sp, sp, #32 */ 0xf3, 0x0f, 0x1b, 0xf8, /* 30: ldr x19, [sp], #80 */ 0xc0, 0x03, 0x5f, 0xd6, /* 34: ret */ }; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9638