@@ -77,9 +77,9 @@ mlir::Value CIRGenFunction::emitX86BuiltinExpr(unsigned builtinID,
7777 // comparison
7878 // - Just emit the intrinsics call instead of calling this helper, see how the
7979 // LLVM lowering handles this.
80- auto emitVectorFCmp = [this , &ops, &expr](cir::CmpOpKind pred,
81- bool shouldInvert,
82- bool isSignaling) {
80+ auto emitVectorFCmp = [this , &ops, &expr](cir::CmpOpKind pred,
81+ bool shouldInvert,
82+ bool isSignaling) {
8383 assert (!cir::MissingFeatures::cgFPOptionsRAII ());
8484 auto loc = getLoc (expr->getExprLoc ());
8585 mlir::Value cmp;
@@ -763,12 +763,12 @@ mlir::Value CIRGenFunction::emitX86BuiltinExpr(unsigned builtinID,
763763 return {};
764764 case X86::BI__builtin_ia32_cmpnltps:
765765 case X86::BI__builtin_ia32_cmpnltpd:
766- return emitVectorFCmp (cir::CmpOpKind::lt, /* shouldInvert=*/ true ,
767- /* isSignaling=*/ true );
766+ return emitVectorFCmp (cir::CmpOpKind::lt, /* shouldInvert=*/ true ,
767+ /* isSignaling=*/ true );
768768 case X86::BI__builtin_ia32_cmpnleps:
769769 case X86::BI__builtin_ia32_cmpnlepd:
770- return emitVectorFCmp (cir::CmpOpKind::le, /* shouldInvert=*/ true ,
771- /* isSignaling=*/ true );
770+ return emitVectorFCmp (cir::CmpOpKind::le, /* shouldInvert=*/ true ,
771+ /* isSignaling=*/ true );
772772 case X86::BI__builtin_ia32_cmpordps:
773773 case X86::BI__builtin_ia32_cmpordpd:
774774 case X86::BI__builtin_ia32_cmpph128_mask:
0 commit comments