From 2692b9d2cad156a28aa3ca6692691501f8e0ab51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Mon, 16 Dec 2013 20:28:36 +0100 Subject: [PATCH] ntdll: Trace NtFlushInstructionCache on x86_64. --- 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 1c9286f41c0..633a668ea3b 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