[PATCH] D103491: [ADT] Move DenseMapInfo for ArrayRef/StringRef into respective headers (NFC)
Craig Topper via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 1 16:00:17 PDT 2021
craig.topper added inline comments.
================
Comment at: llvm/include/llvm/ADT/ArrayRef.h:595-600
+ if (RHS.data() == getEmptyKey().data())
+ return LHS.data() == getEmptyKey().data();
+ if (RHS.data() == getTombstoneKey().data())
+ return LHS.data() == getTombstoneKey().data();
+ return LHS == RHS;
+ }
----------------
lattner wrote:
> I'm pretty sure this method can just be "return LHS == RHS;" The tombstone/empty comparisons should work without special cases.
Doesn't operator== on ArrayRef compare the elements of the arrays? So wouldn't that dereference the invalid pointers used by tombstone/empty?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103491/new/
https://reviews.llvm.org/D103491
More information about the cfe-commits
mailing list