From: Mike Danes Date: Fri, 20 Apr 2018 15:18:38 +0000 (+0300) Subject: Initialize Compiler::Vector128/256ULongHandle in compInit X-Git-Tag: accepted/tizen/unified/20190422.045933~2249^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fc4a8139b42b6c234fb4431dfee2b1bd13e6a708;p=platform%2Fupstream%2Fcoreclr.git Initialize Compiler::Vector128/256ULongHandle in compInit --- diff --git a/src/jit/compiler.cpp b/src/jit/compiler.cpp index 8f43bcd..556a22e 100644 --- a/src/jit/compiler.cpp +++ b/src/jit/compiler.cpp @@ -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