summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Baladurin <k.baladurin@samsung.com>2019-09-10 00:40:14 +0900
committerGleb Balykov <g.balykov@samsung.com>2020-03-25 15:29:41 +0300
commit11f58cb707092055ad8519723b45b72def099300 (patch)
tree6007babc82b9506933a466c755554393aa14aa9c
parentcb1cb79d2eeb737037d94588256a65d3e863a847 (diff)
downloadcoreclr-11f58cb707092055ad8519723b45b72def099300.tar.gz
coreclr-11f58cb707092055ad8519723b45b72def099300.tar.bz2
coreclr-11f58cb707092055ad8519723b45b72def099300.zip
Linux/x86: fix build (#26594)
-rw-r--r--src/inc/clrnt.h1
-rw-r--r--src/jit/lsra.cpp2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/inc/clrnt.h b/src/inc/clrnt.h
index 1356666024..f72d97f33d 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 ead71c970b..5002fdd66e 100644
--- a/src/jit/lsra.cpp
+++ b/src/jit/lsra.cpp
@@ -5869,6 +5869,8 @@ void LinearScan::allocateRegisters()
ref->moveReg = false;
}
break;
+ default:
+ break;
}
}
}