[Mlir-commits] [mlir] [MLIR][ARITH] Adds missing foldings for truncf (PR #128096)
Thomas Raoux
llvmlistbot at llvm.org
Fri Feb 21 10:34:10 PST 2025
================
@@ -1517,6 +1517,22 @@ LogicalResult arith::TruncIOp::verify() {
/// Perform safe const propagation for truncf, i.e., only propagate if FP value
/// can be represented without precision loss.
OpFoldResult arith::TruncFOp::fold(FoldAdaptor adaptor) {
+ if (auto extOp = getOperand().getDefiningOp<arith::ExtFOp>()) {
----------------
ThomasRaoux wrote:
well the backend should legalize it, if the semantic of the op is correct we shouldn't disallow it because it doesn't map to a native instruction
https://github.com/llvm/llvm-project/pull/128096
More information about the Mlir-commits
mailing list