[llvm] llvm-reduce: Defer a shouldKeep call in operand reduction (PR #133387)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 1 23:46:34 PDT 2025
https://github.com/arsenm updated https://github.com/llvm/llvm-project/pull/133387
>From 662bae412d0e777c7f5e07c18e523d1a3d4a27e6 Mon Sep 17 00:00:00 2001
From: Matt Arsenault <Matthew.Arsenault at amd.com>
Date: Fri, 28 Mar 2025 12:58:20 +0700
Subject: [PATCH] llvm-reduce: Defer a shouldKeep call in operand reduction
Ideally shouldKeep is only called in contexts that will successfully
do something.
---
llvm/tools/llvm-reduce/deltas/ReduceOperands.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llvm/tools/llvm-reduce/deltas/ReduceOperands.cpp b/llvm/tools/llvm-reduce/deltas/ReduceOperands.cpp
index b0bca015434fa..8b6446725b7d4 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceOperands.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceOperands.cpp
@@ -26,8 +26,8 @@ extractOperandsFromModule(Oracle &O, ReducerWorkItem &WorkItem,
for (auto &I : instructions(&F)) {
if (PHINode *Phi = dyn_cast<PHINode>(&I)) {
for (auto &Op : Phi->incoming_values()) {
- if (!O.shouldKeep()) {
- if (Value *Reduced = ReduceValue(Op))
+ if (Value *Reduced = ReduceValue(Op)) {
+ if (!O.shouldKeep())
Phi->setIncomingValueForBlock(Phi->getIncomingBlock(Op), Reduced);
}
}
More information about the llvm-commits
mailing list