Fix build breaks with older MSVC compiler (#18725)
authorJan Kotas <jkotas@microsoft.com>
Sat, 30 Jun 2018 03:43:08 +0000 (20:43 -0700)
committerGleb Balykov <g.balykov@samsung.com>
Tue, 18 Sep 2018 12:49:14 +0000 (15:49 +0300)
src/jit/codegencommon.cpp

index 7c28691..d985359 100644 (file)
@@ -9684,7 +9684,8 @@ void CodeGen::genFnEpilog(BasicBlock* block)
     // Method handle and address info used in case of jump epilog
     CORINFO_METHOD_HANDLE methHnd = nullptr;
     CORINFO_CONST_LOOKUP  addrInfo;
-    addrInfo.addr = nullptr;
+    addrInfo.addr       = nullptr;
+    addrInfo.accessType = IAT_VALUE;
 
     if (jmpEpilog && lastNode->gtOper == GT_JMP)
     {