ntdll: Trace NtFlushInstructionCache on x86_64.
This commit is contained in:
parent
ff9bbe3721
commit
2692b9d2ca
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue