From 73f5202b01495018281e5ad21881d4b47f70d684 Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Tue, 29 Nov 2005 11:09:42 +0000 Subject: [PATCH] fix comment in RtlPrefetchMemoryNonTemporal svn path=/trunk/; revision=19747 --- reactos/lib/rtl/i386/mem_asm.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/rtl/i386/mem_asm.S b/reactos/lib/rtl/i386/mem_asm.S index 5ad5a3928d7..d1552c50342 100644 --- a/reactos/lib/rtl/i386/mem_asm.S +++ b/reactos/lib/rtl/i386/mem_asm.S @@ -158,6 +158,6 @@ _RtlCompareMemory@12: prefetchnta byte ptr [ecx] // prefechnta(address) sub edx, eax // count = count - cache_line_size add ecx, eax // address = address + cache_line_size - cmp edx, 0 // if(count) <= 0 + cmp edx, 0 // if(count) > 0 ja fetch_next_line // goto fetch_next_line ret -- 2.17.1