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(
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
......
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