Skip to content
Snippets Groups Projects
Commit 2692b9d2 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

ntdll: Trace NtFlushInstructionCache on x86_64.

parent ff9bbe37
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment