Revert "Cache line aligned TT"

This reverts commit 083fe58124

It seems to break Android build

No functional change.
This commit is contained in:
Marco Costalba
2013-04-30 08:08:54 +02:00
parent 06b9140e5c
commit 293c44bc09
4 changed files with 11 additions and 11 deletions

View File

@@ -237,8 +237,10 @@ void prefetch(char* addr) {
# if defined(__INTEL_COMPILER) || defined(_MSC_VER)
_mm_prefetch(addr, _MM_HINT_T0);
_mm_prefetch(addr+64, _MM_HINT_T0); // 64 bytes ahead
# else
__builtin_prefetch(addr);
__builtin_prefetch(addr+64);
# endif
}