diff options
Diffstat (limited to 'lld/wasm/LTO.h')
-rw-r--r-- | lld/wasm/LTO.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lld/wasm/LTO.h b/lld/wasm/LTO.h index 37fea7ad6ee..9c1e1788ed3 100644 --- a/lld/wasm/LTO.h +++ b/lld/wasm/LTO.h @@ -43,13 +43,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; }; } // namespace wasm } // namespace lld |