[llvm] 115a77d - llvm-reduce: Fix losing metadata when removing arguments (#133409)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 28 09:28:06 PDT 2025
Author: Matt Arsenault
Date: 2025-03-28T23:28:03+07:00
New Revision: 115a77df9d8475bc62bc22fe52d0d1c62d8111e5
URL: https://github.com/llvm/llvm-project/commit/115a77df9d8475bc62bc22fe52d0d1c62d8111e5
DIFF: https://github.com/llvm/llvm-project/commit/115a77df9d8475bc62bc22fe52d0d1c62d8111e5.diff
LOG: llvm-reduce: Fix losing metadata when removing arguments (#133409)
Added:
Modified:
llvm/test/tools/llvm-reduce/remove-arguments-preserve-fmf.ll
llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
Removed:
################################################################################
diff --git a/llvm/test/tools/llvm-reduce/remove-arguments-preserve-fmf.ll b/llvm/test/tools/llvm-reduce/remove-arguments-preserve-fmf.ll
index 2ceb3e717200b..4c78920ede44a 100644
--- a/llvm/test/tools/llvm-reduce/remove-arguments-preserve-fmf.ll
+++ b/llvm/test/tools/llvm-reduce/remove-arguments-preserve-fmf.ll
@@ -16,11 +16,14 @@ declare float @math_callee_decl(float %a, float %b)
; INTERESTING: call
; INTERESTING: call
-; RESULT: %call0 = call nnan nsz float @math_callee()
+; RESULT: %call0 = call nnan nsz float @math_callee(), !fpmath !0
; RESULT: %call1 = call ninf float @math_callee_decl()
define float @math_caller(float %x) {
- %call0 = call nnan nsz float @math_callee(float %x, float 2.0)
+ %call0 = call nnan nsz float @math_callee(float %x, float 2.0), !fpmath !0
%call1 = call ninf float @math_callee_decl(float %x, float 2.0)
%result = fadd float %call0, %call1
ret float %result
}
+
+; RESULT: !0 = !{float 2.000000e+00}
+!0 = !{float 2.0}
diff --git a/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp b/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
index b1bbcf8917b3c..ba8721e09b99c 100644
--- a/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
+++ b/llvm/tools/llvm-reduce/deltas/ReduceArguments.cpp
@@ -61,7 +61,7 @@ static void replaceFunctionCalls(Function &OldF, Function &NewF,
}
}
- // FIXME: Losing bundles and metadata
+ // FIXME: Losing bundles
CallInst *NewCI = CallInst::Create(&NewF, Args);
NewCI->setCallingConv(NewF.getCallingConv());
@@ -78,6 +78,8 @@ static void replaceFunctionCalls(Function &OldF, Function &NewF,
if (auto *FPOp = dyn_cast<FPMathOperator>(NewCI))
cast<Instruction>(FPOp)->setFastMathFlags(CI->getFastMathFlags());
+ NewCI->copyMetadata(*CI);
+
if (!CI->use_empty())
CI->replaceAllUsesWith(NewCI);
ReplaceInstWithInst(CI, NewCI);
More information about the llvm-commits
mailing list