[llvm] 29925b7 - [NFC][CostModel][ARM] Remove redundant lambda capture (#132018)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 19 06:52:57 PDT 2025
Author: Nashe Mncube
Date: 2025-03-19T13:52:53Z
New Revision: 29925b7044517bcd1b3f76333a598092427c3636
URL: https://github.com/llvm/llvm-project/commit/29925b7044517bcd1b3f76333a598092427c3636
DIFF: https://github.com/llvm/llvm-project/commit/29925b7044517bcd1b3f76333a598092427c3636.diff
LOG: [NFC][CostModel][ARM] Remove redundant lambda capture (#132018)
Buildbot failures were caused by PR #122713. This was due to unused captures in a lambda function.
Added:
Modified:
llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp b/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
index dc2909e146dcd..8f0db457a982e 100644
--- a/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
+++ b/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
@@ -1486,7 +1486,7 @@ InstructionCost ARMTTIImpl::getArithmeticInstrCost(
auto IsExtInst = [](const Value *V) -> bool {
return isa<ZExtInst>(V) || isa<SExtInst>(V);
};
- auto IsExtensionFromHalf = [&, IsExtInst](const Value *V) -> bool {
+ auto IsExtensionFromHalf = [](const Value *V) -> bool {
return cast<Instruction>(V)->getOperand(0)->getType()->isIntegerTy(16);
};
More information about the llvm-commits
mailing list