[PATCH] D103422: [ADT] Move DenseMapInfo for APInt into APInt.h (PR50527)
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon May 31 21:57:10 PDT 2021
craig.topper added inline comments.
================
Comment at: llvm/lib/Support/APInt.cpp:553
+unsigned DenseMapInfo<APInt>::getHashValue(const APInt &Key) {
+ return static_cast<unsigned>(hash_value(Key));
----------------
Why is this out of line now?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103422/new/
https://reviews.llvm.org/D103422
More information about the llvm-commits
mailing list