diff options
-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; }; } |