================
@@ -362,6 +363,28 @@ static mlir::Value emitX86Muldq(CIRGenBuilderTy &builder,
mlir::Location loc,
return builder.createMul(loc, lhs, rhs);
}
+static mlir::Value emitX86CvtF16ToFloatExpr(CIRGenBuilderTy &builder,
+ mlir::Location loc,
+ mlir::Type dstTy,
+ SmallVectorImpl<mlir::Value> &ops)
{
+
+ mlir::Value src = ops[0];
+ mlir::Value passthru = ops[1];
+ mlir::Value mask = ops[2];
+
+ auto vecTy = mlir::cast<cir::VectorType>(src.getType());
+ uint64_t numElems = vecTy.getSize();
+
+ mask = getMaskVecValue(builder, loc, mask, numElems);
----------------
bcardosolopes wrote:
This should be `mlir::Value mask = getMaskVecValue(builder, loc, ops[2],
numElems);`
https://github.com/llvm/llvm-project/pull/171615
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits