[llvm] [gold] Fix compilation (PR #130334)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 11:46:25 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lto
Author: Vitaly Buka (vitalybuka)
<details>
<summary>Changes</summary>
After #<!-- -->115331.
---
Full diff: https://github.com/llvm/llvm-project/pull/130334.diff
1 Files Affected:
- (modified) llvm/tools/gold/gold-plugin.cpp (+3-3)
``````````diff
diff --git a/llvm/tools/gold/gold-plugin.cpp b/llvm/tools/gold/gold-plugin.cpp
index b42bfbed3b873..256933d3f53f9 100644
--- a/llvm/tools/gold/gold-plugin.cpp
+++ b/llvm/tools/gold/gold-plugin.cpp
@@ -1117,10 +1117,10 @@ static std::vector<std::pair<SmallString<128>, bool>> runLTO() {
std::make_unique<llvm::raw_fd_ostream>(FD, true));
};
- auto AddBuffer = [&](size_t Task, const Twine &moduleName,
+ auto AddBuffer = [&](size_t Task, const Twine &ModuleName,
std::unique_ptr<MemoryBuffer> MB) {
- auto Stream = *AddStream(Task, ModuleName);
- Stream->OS << MB->getBuffer();
+ auto Stream = AddStream(Task, ModuleName);
+ *Stream->OS << MB->getBuffer();
check(Stream->commit(), "Failed to commit cache");
};
``````````
</details>
https://github.com/llvm/llvm-project/pull/130334
More information about the llvm-commits
mailing list