[llvm] Use a reference to DataLayout instead of copying the underlying string data (PR #128269)

via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 17:58:55 PST 2025


https://github.com/cooperp updated https://github.com/llvm/llvm-project/pull/128269

>From 628f8dbf86d44b61ff83b11fb82b7366f066651f Mon Sep 17 00:00:00 2001
From: Peter Cooper <peter_cooper at apple.com>
Date: Fri, 21 Feb 2025 17:52:00 -0800
Subject: [PATCH] Use a reference to DataLayout instead of copying the
 underlying string data

---
 llvm/lib/Transforms/Scalar/Reassociate.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/lib/Transforms/Scalar/Reassociate.cpp b/llvm/lib/Transforms/Scalar/Reassociate.cpp
index 7cb9bace47bf4..a7db9fd817883 100644
--- a/llvm/lib/Transforms/Scalar/Reassociate.cpp
+++ b/llvm/lib/Transforms/Scalar/Reassociate.cpp
@@ -420,7 +420,7 @@ static bool LinearizeExprTree(Instruction *I,
   using LeafMap = DenseMap<Value *, uint64_t>;
   LeafMap Leaves; // Leaf -> Total weight so far.
   SmallVector<Value *, 8> LeafOrder; // Ensure deterministic leaf output order.
-  const DataLayout DL = I->getDataLayout();
+  const DataLayout &DL = I->getDataLayout();
 
 #ifndef NDEBUG
   SmallPtrSet<Value *, 8> Visited; // For checking the iteration scheme.



More information about the llvm-commits mailing list