From 11f58cb707092055ad8519723b45b72def099300 Mon Sep 17 00:00:00 2001 From: Konstantin Baladurin Date: Tue, 10 Sep 2019 00:40:14 +0900 Subject: [PATCH] Linux/x86: fix build (#26594) --- src/inc/clrnt.h | 1 + src/jit/lsra.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/inc/clrnt.h b/src/inc/clrnt.h index 1356666..f72d97f 100644 --- a/src/inc/clrnt.h +++ b/src/inc/clrnt.h @@ -854,6 +854,7 @@ typedef struct _DISPATCHER_CONTEXT { #ifdef WIN64EXCEPTIONS #include "win64unwind.h" +#include "daccess.h" FORCEINLINE DWORD diff --git a/src/jit/lsra.cpp b/src/jit/lsra.cpp index ead71c9..5002fdd 100644 --- a/src/jit/lsra.cpp +++ b/src/jit/lsra.cpp @@ -5869,6 +5869,8 @@ void LinearScan::allocateRegisters() ref->moveReg = false; } break; + default: + break; } } } -- 2.7.4