[X86] getVectorMaskingNode - fix indentation. NFC.

clang-format
This commit is contained in:
Simon Pilgrim 2022-01-24 11:08:13 +00:00
parent 912af6b570
commit 577a6dc9a1
1 changed files with 3 additions and 3 deletions

View File

@ -25785,9 +25785,9 @@ static SDValue getMaskNode(SDValue Mask, MVT MaskVT,
/// (vselect \p Mask, \p Op, \p PreservedSrc) for others along with the
/// necessary casting or extending for \p Mask when lowering masking intrinsics
static SDValue getVectorMaskingNode(SDValue Op, SDValue Mask,
SDValue PreservedSrc,
const X86Subtarget &Subtarget,
SelectionDAG &DAG) {
SDValue PreservedSrc,
const X86Subtarget &Subtarget,
SelectionDAG &DAG) {
MVT VT = Op.getSimpleValueType();
MVT MaskVT = MVT::getVectorVT(MVT::i1, VT.getVectorNumElements());
unsigned OpcodeSelect = ISD::VSELECT;