ntdll: Trace NtFlushInstructionCache on x86_64

André Hentschel nerv at dawncrow.de
Mon Dec 16 13:28:36 CST 2013


---
 dlls/ntdll/process.c | 4 ++--
 1 file 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
-- 
1.8.1.2




More information about the wine-patches mailing list