[llvm] [AArch64][ELF Parser] Fix out-of-scope variable usage (PR #130576)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 03:46:35 PDT 2025


https://github.com/sivan-shani created https://github.com/llvm/llvm-project/pull/130576

Return a reference to a persistent variable instead of a temporary copy.

>From e2622a86c44a4e9fdc2bf0828f1eb90a261ec8bd Mon Sep 17 00:00:00 2001
From: Sivan Shani <sivan.shani at arm.com>
Date: Mon, 10 Mar 2025 10:41:45 +0000
Subject: [PATCH] [AArch64][ELF Parser] Fix out-of-scope variable usage

Return a reference to a persistent variable instead of a temporary copy.
---
 llvm/lib/Support/ELFAttrParserExtended.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/llvm/lib/Support/ELFAttrParserExtended.cpp b/llvm/lib/Support/ELFAttrParserExtended.cpp
index 44f86a38ef8c2..f8a6f46360dec 100644
--- a/llvm/lib/Support/ELFAttrParserExtended.cpp
+++ b/llvm/lib/Support/ELFAttrParserExtended.cpp
@@ -32,9 +32,9 @@ ELFExtendedAttrParser::getAttributeValue(unsigned Tag) const {
 std::optional<unsigned>
 ELFExtendedAttrParser::getAttributeValue(StringRef BuildAttrSubsectionName,
                                          unsigned Tag) const {
-  for (auto SubSection : SubSectionVec) {
+  for (const auto &SubSection : SubSectionVec) {
     if (BuildAttrSubsectionName == SubSection.Name)
-      for (auto BAItem : SubSection.Content) {
+      for (const auto &BAItem : SubSection.Content) {
         if (Tag == BAItem.Tag)
           return std::optional<unsigned>(BAItem.IntValue);
       }



More information about the llvm-commits mailing list