summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2018-04-24 15:18:12 -0700
committerRuss Keldorph <russ.keldorph@microsoft.com>2018-04-30 14:38:49 -0700
commitce238f4c376fefa9557040c12aef46e03e94a5c7 (patch)
tree7e431c6404c372a2423e6b0b7b3faeb62b95e7b2 /src
parent3a3b35fc2fbf987255649a1e3983486706931647 (diff)
downloadcoreclr-ce238f4c376fefa9557040c12aef46e03e94a5c7.tar.gz
coreclr-ce238f4c376fefa9557040c12aef46e03e94a5c7.tar.bz2
coreclr-ce238f4c376fefa9557040c12aef46e03e94a5c7.zip
Initialize Compiler::Vector128/256ULongHandle in compInit
Diffstat (limited to 'src')
-rw-r--r--src/jit/compiler.cpp2
1 files changed, 2 insertions, 0 deletions
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