[PATCH] D63887: [ThinLTO] only emit used or referenced CFI records to index
Vitaly Buka via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 8 14:41:54 PDT 2019
vitalybuka accepted this revision.
vitalybuka added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/Bitcode/Writer/BitcodeWriter.cpp:3886
- for (const auto &GVI : valueIds()) {
+ const std::map<GlobalValue::GUID, unsigned> &ValueIds = valueIds();
+ for (const auto &GVI : ValueIds) {
----------------
why do you need this change?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D63887/new/
https://reviews.llvm.org/D63887
More information about the llvm-commits
mailing list