Do not instrument globals that are placed in sections containing "__llvm" in their name.
ASan interferes with LLVM's PGO, which places its globals into a special section, which is memcpy-ed by the linker as a whole. When those goals are instrumented, ASan's memcpy wrapper reports an issue.
s/llvm/LLVM ?