Merge pull request #17697 from mikedn/vec-hnd
authorCarol Eidt <carol.eidt@microsoft.com>
Tue, 24 Apr 2018 21:22:42 +0000 (14:22 -0700)
committerGitHub <noreply@github.com>
Tue, 24 Apr 2018 21:22:42 +0000 (14:22 -0700)
Initialize Compiler::Vector128/256ULongHandle in compInit

src/jit/compiler.cpp

index 3daebc2..5d40b9c 100644 (file)
@@ -2118,6 +2118,7 @@ void Compiler::compInit(ArenaAllocator* pAlloc, InlineInfo* inlineInfo)
     Vector128ByteHandle   = nullptr;
     Vector128LongHandle   = nullptr;
     Vector128UIntHandle   = nullptr;
+    Vector128ULongHandle  = nullptr;
 #if defined(_TARGET_XARCH_)
     Vector256FloatHandle  = nullptr;
     Vector256DoubleHandle = nullptr;
@@ -2128,6 +2129,7 @@ void Compiler::compInit(ArenaAllocator* pAlloc, InlineInfo* inlineInfo)
     Vector256ByteHandle   = nullptr;
     Vector256LongHandle   = nullptr;
     Vector256UIntHandle   = nullptr;
+    Vector256ULongHandle  = nullptr;
 #endif // defined(_TARGET_XARCH_)
 #endif // FEATURE_HW_INTRINSICS
 #endif // FEATURE_SIMD