summaryrefslogtreecommitdiff
path: root/src/jit/compiler.h
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-04-13 01:02:35 +0900
committerBruce Forstall <brucefo@microsoft.com>2017-04-12 09:02:35 -0700
commitf9d39599448fc89cd48b0a55a34f5d5fded7fa42 (patch)
tree3145b6e15c3fa518ec3b8bf6a90eef1bda0b95a4 /src/jit/compiler.h
parentf00dfaf7bf0c137ec904a9d3a480a55e3f9f79a1 (diff)
downloadcoreclr-f9d39599448fc89cd48b0a55a34f5d5fded7fa42.tar.gz
coreclr-f9d39599448fc89cd48b0a55a34f5d5fded7fa42.tar.bz2
coreclr-f9d39599448fc89cd48b0a55a34f5d5fded7fa42.zip
[x86/Linux] Funclet-based synchronization (#10791)
* [x86/Linux] Funclet-based synchronization * Fix x86/Windows build error * Revise per feedback * Fix format error
Diffstat (limited to 'src/jit/compiler.h')
-rw-r--r--src/jit/compiler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/compiler.h b/src/jit/compiler.h
index 832ed031d8..5b5ee707d3 100644
--- a/src/jit/compiler.h
+++ b/src/jit/compiler.h
@@ -3646,7 +3646,7 @@ public:
GenTreePtr fgGetCritSectOfStaticMethod();
-#if !defined(_TARGET_X86_)
+#if FEATURE_EH_FUNCLETS
void fgAddSyncMethodEnterExit();
@@ -3654,7 +3654,7 @@ public:
void fgConvertSyncReturnToLeave(BasicBlock* block);
-#endif // !_TARGET_X86_
+#endif // FEATURE_EH_FUNCLETS
void fgAddReversePInvokeEnterExit();