[PATCH] D66848: [lld-link] implement -start-lib and -end-lib

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 28 01:53:26 PDT 2019


MaskRay added inline comments.


================
Comment at: lld/COFF/InputFiles.h:133
+  explicit ObjFile(MemoryBufferRef m, std::vector<Symbol *> &&symbols)
+      : InputFile(ObjectKind, m), symbols(symbols) {}
   static bool classof(const InputFile *f) { return f->kind() == ObjectKind; }
----------------
`symbols(std::move(symbols))`


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D66848





More information about the llvm-commits mailing list