[llvm] [NFC][CostModel][ARM] Remove redundant lambda capture (PR #132018)

Nashe Mncube via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 19 05:49:21 PDT 2025


https://github.com/nasherm created https://github.com/llvm/llvm-project/pull/132018

Buildbot failures were caused by PR #122713. This
was due to unused captures in a lambda function.

>From a49f0261e6d89e8778e08e6aafcaa97c83a314f0 Mon Sep 17 00:00:00 2001
From: nasmnc01 <nashe.mncube at arm.com>
Date: Wed, 19 Mar 2025 12:46:51 +0000
Subject: [PATCH] [NFC][CostModel][ARM] Remove redundant lambda capture

Buildbot failures were caused by PR #122713. This
was due to unused captures in a lambda function.

Change-Id: Ie0907396c2551190dd982bfa180934b4075271d8
---
 llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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