diff --git a/include/llvm/ADT/DenseMapInfo.h b/include/llvm/ADT/DenseMapInfo.h index a895074220d..d76ebde7fb3 100644 --- a/include/llvm/ADT/DenseMapInfo.h +++ b/include/llvm/ADT/DenseMapInfo.h @@ -84,6 +84,20 @@ template<> struct DenseMapInfo { } }; +// Provide DenseMapInfo for unsigned long longs. +template<> struct DenseMapInfo { + static inline unsigned long long getEmptyKey() { return ~0LL; } + static inline unsigned long long getTombstoneKey() { return ~0LL - 1LL; } + static unsigned getHashValue(const unsigned long long& Val) { + return (unsigned)(Val * 37LL); + } + static bool isPod() { return true; } + static bool isEqual(const unsigned long long& LHS, + const unsigned long long& RHS) { + return LHS == RHS; + } +}; + // Provide DenseMapInfo for all pairs whose members have info. template struct DenseMapInfo > {