[clang] [CIR][CIRGen][Builtin][X86] Masked compress Intrinsics (PR #169582)
Hendrik Hübner via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 25 16:08:43 PST 2025
================
@@ -89,6 +89,14 @@ static mlir::Value getMaskVecValue(CIRGenFunction &cgf, const CallExpr *expr,
}
return maskVec;
}
+static mlir::Value emitX86CompressExpand(CIRGenFunction &cgf, const CallExpr *expr,ArrayRef<mlir::Value> ops, bool IsCompress, const std::string &ID){
----------------
HendrikHuebner wrote:
```suggestion
static mlir::Value emitX86CompressExpand(CIRGenFunction &cgf, const CallExpr *expr,ArrayRef<mlir::Value> ops, bool isCompress, const std::string &id){
```
Please use camel case for all variables/functions
https://github.com/llvm/llvm-project/pull/169582
More information about the cfe-commits
mailing list