[llvm] c23256e - [AsmPrinter] Avoid repeated hash lookups (NFC) (#127744)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 08:20:25 PST 2025
Author: Kazu Hirata
Date: 2025-02-19T08:20:21-08:00
New Revision: c23256ecbd29103c800d24f83649057ae84acb09
URL: https://github.com/llvm/llvm-project/commit/c23256ecbd29103c800d24f83649057ae84acb09
DIFF: https://github.com/llvm/llvm-project/commit/c23256ecbd29103c800d24f83649057ae84acb09.diff
LOG: [AsmPrinter] Avoid repeated hash lookups (NFC) (#127744)
Added:
Modified:
llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp b/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
index 1c603f5988ad1..e8d1aba63afb4 100644
--- a/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
@@ -252,10 +252,10 @@ void EHStreamer::computeCallSiteTable(
if (&MBB == &Asm->MF->front() || MBB.isBeginSection()) {
// We start a call-site range upon function entry and at the beginning of
// every basic block section.
- CallSiteRanges.push_back(
- {Asm->MBBSectionRanges[MBB.getSectionID()].BeginLabel,
- Asm->MBBSectionRanges[MBB.getSectionID()].EndLabel,
- Asm->getMBBExceptionSym(MBB), CallSites.size()});
+ auto &Range = Asm->MBBSectionRanges[MBB.getSectionID()];
+ CallSiteRanges.push_back({Range.BeginLabel, Range.EndLabel,
+ Asm->getMBBExceptionSym(MBB),
+ CallSites.size()});
PreviousIsInvoke = false;
SawPotentiallyThrowing = false;
LastLabel = nullptr;
More information about the llvm-commits
mailing list