From ce238f4c376fefa9557040c12aef46e03e94a5c7 Mon Sep 17 00:00:00 2001 From: Carol Eidt Date: Tue, 24 Apr 2018 15:18:12 -0700 Subject: Initialize Compiler::Vector128/256ULongHandle in compInit --- src/jit/compiler.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/jit/compiler.cpp b/src/jit/compiler.cpp index 31bb2b4be6..473e00da8b 100644 --- a/src/jit/compiler.cpp +++ b/src/jit/compiler.cpp @@ -2117,6 +2117,7 @@ void Compiler::compInit(ArenaAllocator* pAlloc, InlineInfo* inlineInfo) Vector128ByteHandle = nullptr; Vector128LongHandle = nullptr; Vector128UIntHandle = nullptr; + Vector128ULongHandle = nullptr; #if defined(_TARGET_XARCH_) Vector256FloatHandle = nullptr; Vector256DoubleHandle = nullptr; @@ -2127,6 +2128,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 -- cgit v1.2.3