summaryrefslogtreecommitdiff
path: root/src/vm/frames.h
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-03-02 16:50:11 +0900
committerJan Kotas <jkotas@microsoft.com>2017-03-01 23:50:11 -0800
commit262f09cbb657febc7454ca8a9675d3213d5ee8a0 (patch)
tree7d34321d4285d1bb0a3a6bdde3925098c0bf3fc7 /src/vm/frames.h
parente859c309438caf04d715f2b11427935565b322d4 (diff)
downloadcoreclr-262f09cbb657febc7454ca8a9675d3213d5ee8a0.tar.gz
coreclr-262f09cbb657febc7454ca8a9675d3213d5ee8a0.tar.bz2
coreclr-262f09cbb657febc7454ca8a9675d3213d5ee8a0.zip
[x86/Linux] Clean up EXCEPTION_REGISTRATION_RECORD (#9895)
Diffstat (limited to 'src/vm/frames.h')
-rw-r--r--src/vm/frames.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vm/frames.h b/src/vm/frames.h
index b009f22b3c..747cbd6d68 100644
--- a/src/vm/frames.h
+++ b/src/vm/frames.h
@@ -2846,7 +2846,7 @@ protected:
};
#endif // _TARGET_X86_ && !FEATURE_PAL
-#if defined(_TARGET_X86_)
+#if defined(_TARGET_X86_) && defined(FEATURE_COMINTEROP)
//-------------------------------------------------------------------------
// Exception handler for COM to managed frame
// and the layout of the exception registration record structure in the stack
@@ -2866,7 +2866,7 @@ struct ComToManagedExRecord
return &m_frame;
}
};
-#endif // _TARGET_X86_
+#endif // _TARGET_X86_ && FEATURE_COMINTEROP
//------------------------------------------------------------------------