@@ -2727,35 +2727,35 @@ GenTree* Compiler::impSpecialIntrinsic(NamedIntrinsic intrinsic,
2727
2727
retNode->AsHWIntrinsic ()->SetAuxiliaryJitType (op1BaseJitType);
2728
2728
break ;
2729
2729
}
2730
- case NI_Sve_ConditionalExtractAfterLastActiveElementScalar:
2731
- case NI_Sve_ConditionalExtractLastActiveElementScalar:
2732
- {
2730
+ case NI_Sve_ConditionalExtractAfterLastActiveElementScalar:
2731
+ case NI_Sve_ConditionalExtractLastActiveElementScalar:
2732
+ {
2733
2733
assert (sig->numArgs == 3 );
2734
2734
2735
2735
#ifdef DEBUG
2736
2736
isValidScalarIntrinsic = true ;
2737
2737
#endif
2738
2738
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;
2744
2744
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);
2749
2749
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);
2752
2752
2753
2753
retNode = gtNewScalarHWIntrinsicNode (retType, op1, op2, op3, intrinsic);
2754
2754
2755
2755
retNode->AsHWIntrinsic ()->SetSimdBaseJitType (simdBaseJitType);
2756
2756
retNode->AsHWIntrinsic ()->SetAuxiliaryJitType (op2BaseJitType);
2757
2757
break ;
2758
- }
2758
+ }
2759
2759
2760
2760
default :
2761
2761
{
0 commit comments