diff options
author | Rui Ueyama <ruiu@google.com> | 2016-09-29 22:37:45 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-09-29 22:37:45 +0000 |
commit | 1cc007aeae3a84e18a2609200eb2d827aa811011 (patch) | |
tree | 38854c87d55eaf5c71a44bf5fbbf16a77d53f377 | |
parent | 475f2ccf98d53a2146530bef403bdfb8e97085cf (diff) | |
download | bcm5719-llvm-1cc007aeae3a84e18a2609200eb2d827aa811011.tar.gz bcm5719-llvm-1cc007aeae3a84e18a2609200eb2d827aa811011.zip |
Keep a private member private.
llvm-svn: 282798
-rw-r--r-- | lld/ELF/LTO.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/LTO.h b/lld/ELF/LTO.h index e43cfcce373..7a91957fec5 100644 --- a/lld/ELF/LTO.h +++ b/lld/ELF/LTO.h @@ -42,12 +42,12 @@ class BitcodeCompiler { public: BitcodeCompiler(); ~BitcodeCompiler(); + void add(BitcodeFile &F); std::vector<InputFile *> compile(); - std::unique_ptr<llvm::lto::LTO> LtoObj; - private: + std::unique_ptr<llvm::lto::LTO> LtoObj; std::vector<SmallString<0>> Buff; }; } |