summaryrefslogtreecommitdiff
path: root/src/zap/zapcode.cpp
diff options
context:
space:
mode:
authorSaeHie Park <saehie.park@gmail.com>2016-11-28 23:03:29 +0900
committerJan Kotas <jkotas@microsoft.com>2016-11-28 06:03:29 -0800
commit2acb29c3e9aeeab5292d6481e8d3bf583ae110ab (patch)
tree96f8b3ee968d4dde61bb9497d077af53a22a64f4 /src/zap/zapcode.cpp
parent23380588f74c56da424806ca9c7343c4d7a11a97 (diff)
downloadcoreclr-2acb29c3e9aeeab5292d6481e8d3bf583ae110ab.tar.gz
coreclr-2acb29c3e9aeeab5292d6481e8d3bf583ae110ab.tar.bz2
coreclr-2acb29c3e9aeeab5292d6481e8d3bf583ae110ab.zip
[x86/Linux] Fix compile error in zapcode (#8294)
Fix compile error for x86/Linux - Remove ZapUnwindInfo WIN64EXCEPTIONS codes for x86/Linux - fix "use of undeclared identifier 'NEED_TO_PORT_THIS_ONE'" - fix "unknown type name 'UNWIND_INFO'" - fix "use of undeclared identifier 'READYTORUN_HELPER_PersonalityRoutineFilterFunclet'"
Diffstat (limited to 'src/zap/zapcode.cpp')
-rw-r--r--src/zap/zapcode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zap/zapcode.cpp b/src/zap/zapcode.cpp
index adad361de0..167c0ed912 100644
--- a/src/zap/zapcode.cpp
+++ b/src/zap/zapcode.cpp
@@ -1130,7 +1130,7 @@ void ZapUnwindInfo::Save(ZapWriter * pZapWriter)
pZapWriter->Write(&runtimeFunction, sizeof(runtimeFunction));
}
-#ifdef WIN64EXCEPTIONS
+#if defined(WIN64EXCEPTIONS) && !defined(_TARGET_X86_)
// Compare the unwind infos by their offset
int __cdecl ZapUnwindInfo::CompareUnwindInfo(const void* a_, const void* b_)
{