[llvm] [LLVM][MemCpyOpt] Unify alias tags if we optimize allocas (PR #129537)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 7 12:19:47 PDT 2025


================
@@ -1569,6 +1569,10 @@ bool MemCpyOptPass::performStackMoveOptzn(Instruction *Load, Instruction *Store,
               continue;
             }
           }
+          if (UI->hasMetadata(LLVMContext::MD_tbaa))
+            NoAliasInstrs.insert(UI);
----------------
nikic wrote:

Now that this no longer holds only `!noalias`, rename to `AAMetadataInstrs` or something?

https://github.com/llvm/llvm-project/pull/129537


More information about the llvm-commits mailing list