[llvm] 544a161 - [NFC][SPIR-V] Remove unused variable (#127985)

via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 20 03:09:15 PST 2025


Author: Dmitry Sidorov
Date: 2025-02-20T12:09:08+01:00
New Revision: 544a161c9a16283c3c1508bd5eec0f99d6614ac1

URL: https://github.com/llvm/llvm-project/commit/544a161c9a16283c3c1508bd5eec0f99d6614ac1
DIFF: https://github.com/llvm/llvm-project/commit/544a161c9a16283c3c1508bd5eec0f99d6614ac1.diff

LOG: [NFC][SPIR-V] Remove unused variable (#127985)

Fix warning after https://github.com/llvm/llvm-project/pull/127737

Signed-off-by: Sidorov, Dmitry <dmitry.sidorov at intel.com>

Added: 
    

Modified: 
    llvm/lib/Target/SPIRV/SPIRVBuiltins.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/SPIRV/SPIRVBuiltins.cpp b/llvm/lib/Target/SPIRV/SPIRVBuiltins.cpp
index 473fcec8c4dea..3e9ce1c06850b 100644
--- a/llvm/lib/Target/SPIRV/SPIRVBuiltins.cpp
+++ b/llvm/lib/Target/SPIRV/SPIRVBuiltins.cpp
@@ -1053,10 +1053,10 @@ static bool buildBindlessImageINTELInst(const SPIRV::IncomingCall *Call,
     return buildOpFromWrapper(MIRBuilder, Opcode, Call,
                               GR->getSPIRVTypeID(Call->ReturnType));
 
-  auto MIB = MIRBuilder.buildInstr(Opcode)
-                 .addDef(Call->ReturnRegister)
-                 .addUse(GR->getSPIRVTypeID(Call->ReturnType))
-                 .addUse(Call->Arguments[0]);
+  MIRBuilder.buildInstr(Opcode)
+      .addDef(Call->ReturnRegister)
+      .addUse(GR->getSPIRVTypeID(Call->ReturnType))
+      .addUse(Call->Arguments[0]);
 
   return true;
 }


        


More information about the llvm-commits mailing list