Fix pawn entry prefetch

No functional change

Closes #1026
This commit is contained in:
mstembera
2017-03-14 20:56:26 -07:00
committed by Joona Kiiski
parent c3d2e6aba9
commit d01b66ae8f
3 changed files with 8 additions and 1 deletions

View File

@@ -205,6 +205,12 @@ void prefetch(void* addr) {
#endif
void prefetch2(void* addr) {
prefetch(addr);
prefetch((uint8_t*)addr + 64);
}
namespace WinProcGroup {
#ifndef _WIN32