summaryrefslogtreecommitdiff
path: root/src/zap/common.h
diff options
context:
space:
mode:
authorSaeHie Park <saehie.park@gmail.com>2016-11-23 19:14:59 +0900
committerJan Vorlicek <janvorli@microsoft.com>2016-11-23 11:14:59 +0100
commit61e80e47c8fbb3e852ed12962e1ed736f1acf03d (patch)
tree5a44e3c6d2c3ccff9f39f52b18a744bac0d76be8 /src/zap/common.h
parent4d10630a7de0a7b3d02a910d37834e3534ce5605 (diff)
downloadcoreclr-61e80e47c8fbb3e852ed12962e1ed736f1acf03d.tar.gz
coreclr-61e80e47c8fbb3e852ed12962e1ed736f1acf03d.tar.bz2
coreclr-61e80e47c8fbb3e852ed12962e1ed736f1acf03d.zip
[x86/Linux] Fix compile error with exception handling (#8269)
Fix compile error for x86/Linux - fix unknown type name 'EHWatsonBucketTracker' - fix field has incomplete type 'EXCEPTION_REGISTRATION_RECORD' - fix for FaultingExceptionFrame class
Diffstat (limited to 'src/zap/common.h')
-rw-r--r--src/zap/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zap/common.h b/src/zap/common.h
index 95655fd9b8..b3db657f87 100644
--- a/src/zap/common.h
+++ b/src/zap/common.h
@@ -21,11 +21,11 @@
#include <float.h>
#include <limits.h>
-#if !defined(_TARGET_X86_)
+#if !defined(_TARGET_X86_) || defined(FEATURE_PAL)
#ifndef WIN64EXCEPTIONS
#define WIN64EXCEPTIONS
#endif
-#endif // !_TARGET_X86_
+#endif // !_TARGET_X86_ || FEATURE_PAL
#include "utilcode.h"
#include "corjit.h"