PCRE2Project / pcre2

PCRE2 development is now based here.
Other
922 stars 194 forks source link

jit: disable ASAN for arm64 SIMD helper #306

Closed carenas closed 1 year ago

carenas commented 1 year ago

Technically a false positive, but it might be easier to prevent it by going at the source this way.

Fixes: #302

zherczeg commented 1 year ago

What is the effect? It disables something at compile time?

carenas commented 1 year ago

Yes; ASAN works by adding "interceptor" routines in the code at build time, so this tells it not to do that for this function.