[lld] r257078 - ELF: Make private functions private.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 7 09:54:21 PST 2016
Author: ruiu
Date: Thu Jan 7 11:54:21 2016
New Revision: 257078
URL: http://llvm.org/viewvc/llvm-project?rev=257078&view=rev
Log:
ELF: Make private functions private.
Modified:
lld/trunk/ELF/Driver.h
Modified: lld/trunk/ELF/Driver.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Driver.h?rev=257078&r1=257077&r2=257078&view=diff
==============================================================================
--- lld/trunk/ELF/Driver.h (original)
+++ lld/trunk/ELF/Driver.h Thu Jan 7 11:54:21 2016
@@ -26,15 +26,12 @@ void link(ArrayRef<const char *> Args);
class LinkerDriver {
public:
void main(ArrayRef<const char *> Args);
- void readConfigs(llvm::opt::InputArgList &Args);
- void createFiles(llvm::opt::InputArgList &Args);
- template <class ELFT> void link(llvm::opt::InputArgList &Args);
-
void addFile(StringRef Path);
private:
- template <template <class> class T>
- std::unique_ptr<InputFile> createELFInputFile(MemoryBufferRef MB);
+ void readConfigs(llvm::opt::InputArgList &Args);
+ void createFiles(llvm::opt::InputArgList &Args);
+ template <class ELFT> void link(llvm::opt::InputArgList &Args);
llvm::BumpPtrAllocator Alloc;
bool WholeArchive = false;
More information about the llvm-commits
mailing list