23 Dec
2023
23 Dec
'23
12:34 a.m.
Jinoh Kang (@iamahuman) commented about dlls/ntdll/tests/exception.c:
#undef COMPARE }
+static void test_continue(void) +{ + struct context_pair { + CONTEXT before; + CONTEXT after; + } contexts; + NTSTATUS (*func_ptr)( struct context_pair *, void *arg2, void *continue_func, void *capture_func ) = code_mem; + + static const BYTE call_func[] = + { + /* need to preserve these */ + 0x53, /* push rbx */ Please use AT&T style (emitted by objdump and others) for consistency with existing code. For example, the operand order is reversed and registers are prefixed with `%`.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4720#note_56398