Test commit to try to diagnose failures of the IA-64 buildbot

This commit is contained in:
Antoine Pitrou 2010-01-13 13:43:37 +00:00
parent 1379b8404a
commit a913a20c91
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@
#define FAST_SEARCH 1
#define FAST_RSEARCH 2
#define BLOOM_ADD(mask, ch) ((mask |= (1 << ((ch) & (LONG_BIT - 1)))))
#define BLOOM(mask, ch) ((mask & (1 << ((ch) & (LONG_BIT - 1)))))
#define BLOOM_ADD(mask, ch) ((mask |= (1 << ((ch) & 0x1F))))
#define BLOOM(mask, ch) ((mask & (1 << ((ch) & 0x1F))))
Py_LOCAL_INLINE(Py_ssize_t)
fastsearch(const STRINGLIB_CHAR* s, Py_ssize_t n,