Skip to content

Commit bcbf033

Browse files
authored
[clr-interp] Enable SIMD feature for callstubgenerator.cpp on supported architectures (#117769)
* Enable SIMD feature for callstubgenerator.cpp on supported architectures * Remove FEATURE_SIMD condition
1 parent 620e7ad commit bcbf033

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/coreclr/vm/callstubgenerator.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1839,7 +1839,6 @@ CallStubGenerator::ReturnType CallStubGenerator::GetReturnType(ArgIterator *pArg
18391839
break;
18401840
}
18411841
break;
1842-
#ifdef FEATURE_SIMD
18431842
case CORINFO_HFA_ELEM_VECTOR64:
18441843
switch (thReturnValueType.GetSize())
18451844
{
@@ -1860,7 +1859,6 @@ CallStubGenerator::ReturnType CallStubGenerator::GetReturnType(ArgIterator *pArg
18601859
break;
18611860
}
18621861
break;
1863-
#endif
18641862
default:
18651863
_ASSERTE(!"HFA type is not supported");
18661864
break;

0 commit comments

Comments
 (0)