summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaeHie Park <saehie.park@gmail.com>2016-11-23 18:39:33 +0900
committerJan Vorlicek <janvorli@microsoft.com>2016-11-23 10:39:33 +0100
commit2f0f156c9ea8992376c08c6b4f5804ae9c4ba19d (patch)
tree1ad37b280c07cc6d60353a1c935430d7ea673011
parentc581947c307df9abcb6abe8bd64df940d6372d6a (diff)
downloadcoreclr-2f0f156c9ea8992376c08c6b4f5804ae9c4ba19d.tar.gz
coreclr-2f0f156c9ea8992376c08c6b4f5804ae9c4ba19d.tar.bz2
coreclr-2f0f156c9ea8992376c08c6b4f5804ae9c4ba19d.zip
[x86/Linux] Fix SEH '__try' is not supported on this target (#8271)
Fix compile error for x86/Linux - add check !FEATURE_PAL
-rw-r--r--src/jit/error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/error.h b/src/jit/error.h
index c56971aaf7..537b0e040b 100644
--- a/src/jit/error.h
+++ b/src/jit/error.h
@@ -239,7 +239,7 @@ extern void notYetImplemented(const char* msg, const char* file, unsigned line);
// limitations (that could be removed in the future)
#define IMPL_LIMITATION(msg) NO_WAY(msg)
-#if defined(_HOST_X86_)
+#if defined(_HOST_X86_) && !defined(FEATURE_PAL)
// While debugging in an Debugger, the "int 3" will cause the program to break
// Outside, the exception handler will just filter out the "int 3".