[llvm] [FuncComp] Compare MDNodes in cmpMetadata using cmpMDNode. (PR #128878)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 13:29:58 PST 2025
================
@@ -207,22 +212,51 @@ int FunctionComparator::cmpMetadata(const Metadata *L,
auto *CL = dyn_cast<ConstantAsMetadata>(L);
auto *CR = dyn_cast<ConstantAsMetadata>(R);
- if (CL == CR)
- return 0;
- if (!CL)
+ if (CL && CR) {
----------------
nikic wrote:
Was this supposed to be?
```suggestion
if (CL || CR) {
```
https://github.com/llvm/llvm-project/pull/128878
More information about the llvm-commits
mailing list