diff options
author | Kazu Hirata <kazu@google.com> | 2025-09-29 07:54:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-29 07:54:32 -0700 |
commit | 41cce3b92efe7ec41df1ed757d5d037f6f0a8421 (patch) | |
tree | 03de489f58535f3f26c8814556f018ccb1482220 /llvm/lib/CodeGen/ModuloSchedule.cpp | |
parent | 57f2a2ef33e03fd3e15b0104d56c0db6c91657a9 (diff) | |
download | llvm-41cce3b92efe7ec41df1ed757d5d037f6f0a8421.zip llvm-41cce3b92efe7ec41df1ed757d5d037f6f0a8421.tar.gz llvm-41cce3b92efe7ec41df1ed757d5d037f6f0a8421.tar.bz2 |
[ADT] Remove DenseMapBase::getHashValue (NFC) (#161123)
This patch removes:
static unsigned getHashValue(const KeyT &Val) {
return KeyInfoT::getHashValue(Val);
}
This function is redundant given the templated overload:
template <typename LookupKeyT>
static unsigned getHashValue(const LookupKeyT &Val) {
return KeyInfoT::getHashValue(Val);
}
Note that the callers doFind and LookupBucketFor are themselves
templated on LookupKeyT.
Diffstat (limited to 'llvm/lib/CodeGen/ModuloSchedule.cpp')
0 files changed, 0 insertions, 0 deletions