[Mlir-commits] [mlir] 35e068c - [MLIR] fix name of APFloat helper (#173029)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Fri Dec 19 08:13:34 PST 2025
Author: Maksim Levental
Date: 2025-12-19T16:13:29Z
New Revision: 35e068cbd11c3a8264f5fc502ffd2689360029f0
URL: https://github.com/llvm/llvm-project/commit/35e068cbd11c3a8264f5fc502ffd2689360029f0
DIFF: https://github.com/llvm/llvm-project/commit/35e068cbd11c3a8264f5fc502ffd2689360029f0.diff
LOG: [MLIR] fix name of APFloat helper (#173029)
Some downstreams depend on our libraries having the uniform prefix.
Added:
Modified:
mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
Removed:
################################################################################
diff --git a/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt b/mlir/lib/Conversion/ArithAndMathToAPFloat/CMakeLists.txt
index e8fd9c493b975..074225bc4a785 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
@@ -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