Commit 2692b9d2 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Trace NtFlushInstructionCache on x86_64.

parent ff9bbe37
...@@ -564,8 +564,8 @@ NTSTATUS WINAPI NtFlushInstructionCache( ...@@ -564,8 +564,8 @@ NTSTATUS WINAPI NtFlushInstructionCache(
static int once; static int once;
if (!once++) if (!once++)
{ {
#ifdef __i386__ #if defined(__x86_64__) || defined(__i386__)
TRACE("%p %p %ld - no-op on x86\n", ProcessHandle, BaseAddress, Size ); TRACE("%p %p %ld - no-op on x86 and x86_64\n", ProcessHandle, BaseAddress, Size );
#else #else
FIXME("%p %p %ld\n", ProcessHandle, BaseAddress, Size ); FIXME("%p %p %ld\n", ProcessHandle, BaseAddress, Size );
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment