[llvm-branch-commits] [llvm] [llvm-reduce] Run AssignGUIDPass when loading BC (PR #208965)

Matt Arsenault via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Jul 20 08:03:32 PDT 2026


================
@@ -890,6 +892,9 @@ llvm::parseReducerWorkItem(StringRef ToolName, StringRef Filename,
       if (MMM->LTOInfo->IsThinLTO && MMM->LTOInfo->EnableSplitLTOUnit)
         initializeTargetInfo();
     }
+
+    if (MMM->LTOInfo)
+      AssignGUIDPass::runOnModule(MMM->getModule());
----------------
arsenm wrote:

It's also really wonky that this LTO stuff forces us to run actual passes here 

https://github.com/llvm/llvm-project/pull/208965


More information about the llvm-branch-commits mailing list