[PATCH] D59050: [InterleavedAccessAnalysis] Use unordered_map to avoid tombstone insertion.

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 6 15:04:30 PST 2019


efriedma added a comment.

unordered_map is going to be pretty inefficient given the key/value types... it might be worthwhile to add some sort of DenseMap relative to LLVM that handles tombstones differently.  (This also just came up in https://reviews.llvm.org/D59016.)


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59050/new/

https://reviews.llvm.org/D59050





More information about the llvm-commits mailing list