[clang] [lld] [llvm] [llvm][lld][clang] Delay initializing TargetOptions in LTO builds until a Triple is available (PR #179509)

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 14 15:53:35 PST 2026


================
@@ -675,7 +680,7 @@ Error lto::thinBackend(const Config &Conf, unsigned Task, AddStreamFn AddStream,
         if (IRAddStream)
           cgdata::saveModuleForTwoRounds(Mod, Task, IRAddStream);
 
-        codegen(Conf, TM, AddStream, Task, Mod, CombinedIndex);
+        ::codegen(Conf, TM, AddStream, Task, Mod, CombinedIndex);
----------------
MaskRay wrote:

unneeded `::`

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


More information about the llvm-commits mailing list