Skip to content

Commit 760296f

Browse files
committed
fix build
1 parent f1045bd commit 760296f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/coreclr/jit/importercalls.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -2862,6 +2862,7 @@ GenTree* Compiler::impIntrinsic(GenTree* newobjThis,
28622862

28632863
if (isIntrinsic)
28642864
{
2865+
#ifdef FEATURE_HW_INTRINSICS
28652866
// The recursive non-virtual calls to Jit intrinsics are must-expand by convention.
28662867
if ((ni > NI_HW_INTRINSIC_START) && (ni < NI_SIMD_AS_HWINTRINSIC_END))
28672868
{
@@ -2871,6 +2872,7 @@ GenTree* Compiler::impIntrinsic(GenTree* newobjThis,
28712872
mustExpand = gtIsRecursiveCall(method) && !(methodFlags & CORINFO_FLG_VIRTUAL);
28722873
}
28732874
else
2875+
#endif
28742876
{
28752877
mustExpand = (info.compMethodHnd == method) && !(methodFlags & CORINFO_FLG_VIRTUAL);
28762878
}

0 commit comments

Comments
 (0)