[Mlir-commits] [mlir] [MLIR] fix name of APFloat helper (PR #173029)
Maksim Levental
llvmlistbot at llvm.org
Fri Dec 19 08:05:07 PST 2025
https://github.com/makslevental updated https://github.com/llvm/llvm-project/pull/173029
>From 15fcbb35b43bf5b8ef1cd368b26fc89acc402c2d Mon Sep 17 00:00:00 2001
From: Maksim Levental <maksim.levental at gmail.com>
Date: Fri, 19 Dec 2025 07:55:12 -0800
Subject: [PATCH 1/2] [MLIR] fix name of APFloat helper
---
mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt b/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
index e8fd9c493b975..8a25b23907f4b 100644
--- a/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
+++ b/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
@@ -1,4 +1,4 @@
-add_mlir_library(ArithAndMathToAPFloatUtils
+add_mlir_library(MLIRArithAndMathToAPFloatUtils
Utils.cpp
PARTIAL_SOURCES_INTENDED
>From f1f599d6015a9962d58de6e658d4203359cb78c1 Mon Sep 17 00:00:00 2001
From: Maksim Levental <maksim.levental at gmail.com>
Date: Fri, 19 Dec 2025 08:04:58 -0800
Subject: [PATCH 2/2] Update CMakeLists.txt
---
mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt b/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
index 8a25b23907f4b..074225bc4a785 100644
--- a/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
+++ b/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
@@ -20,7 +20,7 @@ add_mlir_conversion_library(MLIRArithToAPFloat
Core
LINK_LIBS PUBLIC
- ArithAndMathToAPFloatUtils
+ MLIRArithAndMathToAPFloatUtils
MLIRArithDialect
MLIRArithTransforms
MLIRFuncDialect
@@ -43,7 +43,7 @@ add_mlir_conversion_library(MLIRMathToAPFloat
LINK_LIBS PUBLIC
MLIRTransformUtils
- ArithAndMathToAPFloatUtils
+ MLIRArithAndMathToAPFloatUtils
MLIRMathDialect
MLIRFuncDialect
MLIRFuncUtils
More information about the Mlir-commits
mailing list