[clang] [CIR][CIRGen][Builtin][X86] Compress Store Intrinsics (PR #169648)
Andy Kaylor via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 1 11:49:08 PST 2025
================
@@ -90,6 +90,14 @@ static mlir::Value getMaskVecValue(CIRGenFunction &cgf, const CallExpr *expr,
return maskVec;
}
+static mlir::Value emitX86CompressStore(CIRGenFunction &cgf, const CallExpr *expr, ArrayRef<mlir::Value> ops){
----------------
andykaylor wrote:
```suggestion
static mlir::Value emitX86CompressStore(CIRGenBuilderTy &builder, mlir::Location loc, ArrayRef<mlir::Value> ops){
```
The signature of `emitIntrinsicCallOp` has recently been updated. This change makes the function you are adding consistent with it.
https://github.com/llvm/llvm-project/pull/169648
More information about the cfe-commits
mailing list