Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit ce238f4

Browse files
CarolEidtRussKeldorph
authored andcommitted
Initialize Compiler::Vector128/256ULongHandle in compInit
1 parent 3a3b35f commit ce238f4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/jit/compiler.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2117,6 +2117,7 @@ void Compiler::compInit(ArenaAllocator* pAlloc, InlineInfo* inlineInfo)
21172117
Vector128ByteHandle = nullptr;
21182118
Vector128LongHandle = nullptr;
21192119
Vector128UIntHandle = nullptr;
2120+
Vector128ULongHandle = nullptr;
21202121
#if defined(_TARGET_XARCH_)
21212122
Vector256FloatHandle = nullptr;
21222123
Vector256DoubleHandle = nullptr;
@@ -2127,6 +2128,7 @@ void Compiler::compInit(ArenaAllocator* pAlloc, InlineInfo* inlineInfo)
21272128
Vector256ByteHandle = nullptr;
21282129
Vector256LongHandle = nullptr;
21292130
Vector256UIntHandle = nullptr;
2131+
Vector256ULongHandle = nullptr;
21302132
#endif // defined(_TARGET_XARCH_)
21312133
#endif // FEATURE_HW_INTRINSICS
21322134
#endif // FEATURE_SIMD

0 commit comments

Comments
 (0)