[PATCH] D39593: [ADCE] Use MapVector for BlockInfo to make iteration order deterministic
Mikael Holmén via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 3 06:34:33 PDT 2017
uabelho added inline comments.
================
Comment at: include/llvm/ADT/MapVector.h:62
+ void reserve(size_type NumEntries) {
+ Vector.reserve(NumEntries);
+ }
----------------
kuhar wrote:
> Shouldn't this reserve `Map` as well?
Ah, I guess so. Sorry, I'll update. Thanks!
https://reviews.llvm.org/D39593
More information about the llvm-commits
mailing list