[llvm-branch-commits] [llvm-reduce] Unconditionally initialize targets (PR #208966)
Matt Arsenault via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Mon Jul 13 05:32:35 PDT 2026
================
@@ -830,9 +830,9 @@ llvm::parseReducerWorkItem(StringRef ToolName, StringRef Filename,
auto MMM = std::make_unique<ReducerWorkItem>();
- if (IsMIR) {
- initializeTargetInfo();
+ initializeTargetInfo();
----------------
arsenm wrote:
If this is going to be unconditional ,probably should move this to main instead of inside parseReducerWorkItem
https://github.com/llvm/llvm-project/pull/208966
More information about the llvm-branch-commits
mailing list