diff options
Diffstat (limited to 'lld/COFF/LTO.h')
-rw-r--r-- | lld/COFF/LTO.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lld/COFF/LTO.h b/lld/COFF/LTO.h index 222945c81de..10a10635079 100644 --- a/lld/COFF/LTO.h +++ b/lld/COFF/LTO.h @@ -42,13 +42,13 @@ public: BitcodeCompiler(); ~BitcodeCompiler(); - void add(BitcodeFile &F); + void add(BitcodeFile &f); std::vector<StringRef> compile(); private: - std::unique_ptr<llvm::lto::LTO> LTOObj; - std::vector<SmallString<0>> Buf; - std::vector<std::unique_ptr<MemoryBuffer>> Files; + std::unique_ptr<llvm::lto::LTO> ltoObj; + std::vector<SmallString<0>> buf; + std::vector<std::unique_ptr<MemoryBuffer>> files; }; } } |