[PATCH] D68816: [NFC] Replace a linked list in LiveDebugVariables pass with a DenseMap
David Blaikie via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 10 11:50:38 PDT 2019
dblaikie added inline comments.
================
Comment at: llvm/lib/CodeGen/LiveDebugVariables.cpp:338
+ }
+ static inline UserValueIdentity getTombstoneKey() {
+ auto Key = DenseMapInfo<DILocalVariable *>::getTombstoneKey();
----------------
Drop the inline keyword here and above - the linkage is implied by the definition being provided inside a class definition.
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68816/new/
https://reviews.llvm.org/D68816
More information about the llvm-commits
mailing list