ntdll: Trace NtFlushInstructionCache on x86_64.

This commit is contained in:
André Hentschel 2013-12-16 20:28:36 +01:00 committed by Alexandre Julliard
parent ff9bbe3721
commit 2692b9d2ca
1 changed files with 2 additions and 2 deletions

View File

@ -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