mirror of https://github.com/python/cpython
Test commit to try to diagnose failures of the IA-64 buildbot
This commit is contained in:
parent
1379b8404a
commit
a913a20c91
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue