From f79524837a820ca6cbe1151265e31a0dc6a8c516 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Tue, 9 Nov 2021 21:03:29 +0100 Subject: [PATCH] update gitignore --- .gitignore | 1 + src/bits.h | 7 ------- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 45a4c57..18b6970 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ pool piece move bits +eval debug *.s /test/ diff --git a/src/bits.h b/src/bits.h index 8d1773c..c3c1dc7 100644 --- a/src/bits.h +++ b/src/bits.h @@ -155,11 +155,4 @@ static inline int popcount64(u64 n) #define bit_for_each64(pos, tmp, ul) \ for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp)) -/* -U64 ls1b = x & -x; // isolate LS1B - ... - x &= x-1; // reset LS1B -} -*/ - #endif /* BITS_H */