[PATCH] D25965: Utility functions for appending to llvm.used/llvm.compiler.used

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 25 15:07:23 PDT 2016


eugenis added inline comments.


================
Comment at: lib/LTO/UpdateCompilerUsed.cpp:55
   // Output
   SmallPtrSetImpl<const GlobalValue *> &LLVMUsed;
 
----------------
mehdi_amini wrote:
> pcc wrote:
> > mehdi_amini wrote:
> > > pcc wrote:
> > > > This could also be a std::vector, then there'd be no need to rebuild it.
> > > How do you prevent duplicate?
> > findLibCallsAndAsm is the only function that adds globals to LLVMUsed. The only call sites are in findInModule which cannot pass duplicates. We can easily change findLibCallsAndAsm to add the global at most once.
> But this is "updating" the list, so even if `findLibCallsAndAsm` adds the globals at most once, they can already be in the list, what did I miss?
The only user start with an empty list.


Repository:
  rL LLVM

https://reviews.llvm.org/D25965





More information about the llvm-commits mailing list