@@ -2727,35 +2727,35 @@ GenTree* Compiler::impSpecialIntrinsic(NamedIntrinsic        intrinsic,
27272727            retNode->AsHWIntrinsic ()->SetAuxiliaryJitType (op1BaseJitType);
27282728            break ;
27292729        }
2730- 	 case  NI_Sve_ConditionalExtractAfterLastActiveElementScalar:
2731- 	 case  NI_Sve_ConditionalExtractLastActiveElementScalar:
2732- 	 {
2730+          case  NI_Sve_ConditionalExtractAfterLastActiveElementScalar:
2731+          case  NI_Sve_ConditionalExtractLastActiveElementScalar:
2732+          {
27332733            assert (sig->numArgs  == 3 );
27342734
27352735#ifdef  DEBUG
27362736            isValidScalarIntrinsic = true ;
27372737#endif 
27382738
2739-             CORINFO_ARG_LIST_HANDLE arg1           = sig->args ;
2740-             CORINFO_ARG_LIST_HANDLE arg2           = info.compCompHnd ->getArgNext (arg1);
2741-             CORINFO_ARG_LIST_HANDLE arg3           = info.compCompHnd ->getArgNext (arg2);
2742-             var_types               argType        = TYP_UNKNOWN;
2743-             CORINFO_CLASS_HANDLE    argClass       = NO_CLASS_HANDLE;
2739+             CORINFO_ARG_LIST_HANDLE arg1     = sig->args ;
2740+             CORINFO_ARG_LIST_HANDLE arg2     = info.compCompHnd ->getArgNext (arg1);
2741+             CORINFO_ARG_LIST_HANDLE arg3     = info.compCompHnd ->getArgNext (arg2);
2742+             var_types               argType  = TYP_UNKNOWN;
2743+             CORINFO_CLASS_HANDLE    argClass = NO_CLASS_HANDLE;
27442744
2745-             argType = JITtype2varType (strip (info.compCompHnd ->getArgType (sig, arg3, &argClass)));
2746-             op3     = getArgForHWIntrinsic (argType, argClass);
2747-             argType = JITtype2varType (strip (info.compCompHnd ->getArgType (sig, arg2, &argClass)));
2748-             op2     = getArgForHWIntrinsic (argType, argClass);
2745+             argType                     = JITtype2varType (strip (info.compCompHnd ->getArgType (sig, arg3, &argClass)));
2746+             op3                         = getArgForHWIntrinsic (argType, argClass);
2747+             argType                     = JITtype2varType (strip (info.compCompHnd ->getArgType (sig, arg2, &argClass)));
2748+             op2                         = getArgForHWIntrinsic (argType, argClass);
27492749            CorInfoType op2BaseJitType = getBaseJitTypeOfSIMDType (argClass);
2750-             argType = JITtype2varType (strip (info.compCompHnd ->getArgType (sig, arg1, &argClass)));
2751-             op1     = getArgForHWIntrinsic (argType, argClass);
2750+             argType                     = JITtype2varType (strip (info.compCompHnd ->getArgType (sig, arg1, &argClass)));
2751+             op1                         = getArgForHWIntrinsic (argType, argClass);
27522752
27532753            retNode = gtNewScalarHWIntrinsicNode (retType, op1, op2, op3, intrinsic);
27542754
27552755            retNode->AsHWIntrinsic ()->SetSimdBaseJitType (simdBaseJitType);
27562756            retNode->AsHWIntrinsic ()->SetAuxiliaryJitType (op2BaseJitType);
27572757            break ;
2758- 	 }
2758+          }
27592759
27602760        default :
27612761        {
0 commit comments