[llvm] [NFC]Don't use else after a return (PR #132644)

Mingming Liu via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 23 16:56:39 PDT 2025


https://github.com/mingmingl-llvm updated https://github.com/llvm/llvm-project/pull/132644

>From 0b1df1c96e150d06953bdc30557406cb62aa046b Mon Sep 17 00:00:00 2001
From: mingmingl <mingmingl at google.com>
Date: Sun, 23 Mar 2025 15:42:57 -0700
Subject: [PATCH 1/2] [NFC]Don't use else after a return

---
 llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
index 00e4533559c28..bf8f1bc509932 100644
--- a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
+++ b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
@@ -983,8 +983,8 @@ MCSection *TargetLoweringObjectFileELF::getUniqueSectionForFunction(
     return selectExplicitSectionGlobal(
         &F, Kind, TM, getContext(), getMangler(), NextUniqueID,
         Used.count(&F), /* ForceUnique = */true);
-  else
-    return selectELFSectionForGlobal(
+  
+  return selectELFSectionForGlobal(
         getContext(), &F, Kind, getMangler(), TM, Used.count(&F),
         /*EmitUniqueSection=*/true, Flags, &NextUniqueID);
 }

>From 20bd5f33092b4b37bf74602de357e5c5b3b65de8 Mon Sep 17 00:00:00 2001
From: mingmingl <mingmingl at google.com>
Date: Sun, 23 Mar 2025 16:05:43 -0700
Subject: [PATCH 2/2] clang-format

---
 llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
index bf8f1bc509932..2f9dce995ef01 100644
--- a/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
+++ b/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
@@ -983,7 +983,7 @@ MCSection *TargetLoweringObjectFileELF::getUniqueSectionForFunction(
     return selectExplicitSectionGlobal(
         &F, Kind, TM, getContext(), getMangler(), NextUniqueID,
         Used.count(&F), /* ForceUnique = */true);
-  
+
   return selectELFSectionForGlobal(
         getContext(), &F, Kind, getMangler(), TM, Used.count(&F),
         /*EmitUniqueSection=*/true, Flags, &NextUniqueID);



More information about the llvm-commits mailing list