update gitignore

This commit is contained in:
2021-11-09 21:03:29 +01:00
parent 5623dc78a5
commit f79524837a
2 changed files with 1 additions and 7 deletions

1
.gitignore vendored
View File

@@ -7,6 +7,7 @@ pool
piece piece
move move
bits bits
eval
debug debug
*.s *.s
/test/ /test/

View File

@@ -155,11 +155,4 @@ static inline int popcount64(u64 n)
#define bit_for_each64(pos, tmp, ul) \ #define bit_for_each64(pos, tmp, ul) \
for (tmp = ul, pos = ffs64(tmp); pos; tmp &= (tmp - 1), pos = ffs64(tmp)) 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 */ #endif /* BITS_H */