fix comment in RtlPrefetchMemoryNonTemporal

svn path=/trunk/; revision=19747
This commit is contained in:
Thomas Bluemel 2005-11-29 11:09:42 +00:00
parent c8f142be9f
commit 73f5202b01

View file

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