You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// As this transformation can cause memory accesses that didn't previously
// alias to begin to alias one another, we remove !noalias metadata from any
// uses of either alloca. This is conservative, but more precision doesn't
// seem worthwhile right now.
for (Instruction *I : NoAliasInstrs)
I->setMetadata(LLVMContext::MD_noalias, nullptr);
but not the other aliasing metadatas (tbaa,tbaa.struct). Probably using combineMetadata as used elsewhere in the pass @khei4 was the one that originally added this optimization
The text was updated successfully, but these errors were encountered:
While debugging JuliaLang/julia#57959. It got minimized to what looks to be a bug in MemCpyOpt, where it strips the noalias attribute of a memcpy
llvm-project/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
Lines 1682 to 1688 in 3c7a0e6
combineMetadata
as used elsewhere in the pass@khei4 was the one that originally added this optimization
The text was updated successfully, but these errors were encountered: