[llvm] 49e585f - Revert "[gold] Fix compilation (#130334)"

Douglas Yung via llvm-commits llvm-commits at lists.llvm.org
Sat Mar 8 15:59:14 PST 2025


Author: Douglas Yung
Date: 2025-03-08T23:53:38Z
New Revision: 49e585f4c44e379193453a9c344807f44a97664f

URL: https://github.com/llvm/llvm-project/commit/49e585f4c44e379193453a9c344807f44a97664f
DIFF: https://github.com/llvm/llvm-project/commit/49e585f4c44e379193453a9c344807f44a97664f.diff

LOG: Revert "[gold] Fix compilation (#130334)"

This reverts commit b0baa1d8bd68a2ce2f7c5f2b62333e410e9122a1.

Reverting follow-up commit to ce9e1d3c15ed6290f1cb07b482939976fa8115cd since the original commit test is flaky.

Added: 
    

Modified: 
    llvm/tools/gold/gold-plugin.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/tools/gold/gold-plugin.cpp b/llvm/tools/gold/gold-plugin.cpp
index 256933d3f53f9..b42bfbed3b873 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");
   };
 


        


More information about the llvm-commits mailing list