Module: wine Branch: master Commit: 2692b9d2cad156a28aa3ca6692691501f8e0ab51 URL: http://source.winehq.org/git/wine.git/?a=commit;h=2692b9d2cad156a28aa3ca6692...
Author: André Hentschel nerv@dawncrow.de Date: Mon Dec 16 20:28:36 2013 +0100
ntdll: Trace NtFlushInstructionCache on x86_64.
---
dlls/ntdll/process.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/process.c b/dlls/ntdll/process.c index 1c9286f..633a668 100644 --- a/dlls/ntdll/process.c +++ b/dlls/ntdll/process.c @@ -564,8 +564,8 @@ NTSTATUS WINAPI NtFlushInstructionCache( static int once; if (!once++) { -#ifdef __i386__ - TRACE("%p %p %ld - no-op on x86\n", ProcessHandle, BaseAddress, Size ); +#if defined(__x86_64__) || defined(__i386__) + TRACE("%p %p %ld - no-op on x86 and x86_64\n", ProcessHandle, BaseAddress, Size ); #else FIXME("%p %p %ld\n", ProcessHandle, BaseAddress, Size ); #endif