[llvm] c15806a - [SPIRV] Avoid repeated hash lookups (NFC) (#126854)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 08:47:30 PST 2025
Author: Kazu Hirata
Date: 2025-02-12T08:47:26-08:00
New Revision: c15806aa5a6d47d1920c6cab5bdcad2f9f5482c1
URL: https://github.com/llvm/llvm-project/commit/c15806aa5a6d47d1920c6cab5bdcad2f9f5482c1
DIFF: https://github.com/llvm/llvm-project/commit/c15806aa5a6d47d1920c6cab5bdcad2f9f5482c1.diff
LOG: [SPIRV] Avoid repeated hash lookups (NFC) (#126854)
Added:
Modified:
llvm/lib/Target/SPIRV/SPIRVEmitIntrinsics.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/SPIRV/SPIRVEmitIntrinsics.cpp b/llvm/lib/Target/SPIRV/SPIRVEmitIntrinsics.cpp
index 719abde3d7fa6..4f3cc9ada04cf 100644
--- a/llvm/lib/Target/SPIRV/SPIRVEmitIntrinsics.cpp
+++ b/llvm/lib/Target/SPIRV/SPIRVEmitIntrinsics.cpp
@@ -93,7 +93,7 @@ class SPIRVEmitIntrinsics
void eraseTodoType(Value *Op) {
auto It = TodoType.find(Op);
if (It != TodoType.end() && It->second) {
- TodoType[Op] = false;
+ It->second = false;
--TodoTypeSz;
}
}
More information about the llvm-commits
mailing list