[llvm] [Local] Make combineAAMetadata() more principled (PR #122091)
Teresa Johnson via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 8 06:59:15 PST 2025
================
@@ -3323,16 +3321,13 @@ void llvm::combineMetadata(Instruction *K, const Instruction *J,
switch (Kind) {
default:
- // FIXME: https://github.com/llvm/llvm-project/issues/121495
- // Change to removing only explicitly listed other metadata, and assert
- // on unknown metadata, to avoid inadvertently dropping newly added
- // metadata types.
K->setMetadata(Kind, nullptr); // Remove unknown metadata
----------------
teresajohnson wrote:
I think it still makes sense to have a FIXME here to assert on unknown metadata. Otherwise we still end up in a situation where new metadata gets silently dropped, until someone digs into a case where it is missing, and that can be hard to find.
https://github.com/llvm/llvm-project/pull/122091
More information about the llvm-commits
mailing list