X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.cpp;h=a2ad42d0e54f7af87e53b75fca03eb6a300da340;hp=7efc6a0918872d6eb75be6f018c94667c720fc17;hb=41816b7ced99c0bd096607fd8a35dbc0b427d455;hpb=13224e1d9d980dd91b4a3fd26937f5a49425ac3b diff --git a/src/tt.cpp b/src/tt.cpp index 7efc6a09..a2ad42d0 100644 --- a/src/tt.cpp +++ b/src/tt.cpp @@ -25,7 +25,7 @@ #include #include #include -#if !defined(__hpux) +#if !(defined(__hpux) || defined(__ppc__) || defined(__ppc64__) || defined(__arm__)) # include #endif @@ -170,7 +170,7 @@ TTEntry* TranspositionTable::retrieve(const Key posKey) const { /// to be loaded from RAM, that can be very slow. When we will /// subsequently call retrieve() the TT data will be already /// quickly accessible in L1/L2 CPU cache. -#if defined(__hpux) +#if defined(__hpux) || defined(__ppc__) || defined(__ppc64__) || defined(__arm__) void TranspositionTable::prefetch(const Key) const {} // Not supported on HP UX #else