зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1371215 part 1 - Use the memchr optimization on OS X too, as it's fast now. r=luke
This commit is contained in:
Родитель
2062d9ac4d
Коммит
20be2e7edb
|
@ -1630,11 +1630,7 @@ FirstCharMatcherUnrolled(const TextChar* text, uint32_t n, const PatChar pat)
|
|||
static const char*
|
||||
FirstCharMatcher8bit(const char* text, uint32_t n, const char pat)
|
||||
{
|
||||
#if defined(__clang__)
|
||||
return FirstCharMatcherUnrolled<char, char>(text, n, pat);
|
||||
#else
|
||||
return reinterpret_cast<const char*>(memchr(text, pat, n));
|
||||
#endif
|
||||
}
|
||||
|
||||
static const char16_t*
|
||||
|
|
Загрузка…
Ссылка в новой задаче