summaryrefslogtreecommitdiff
path: root/src/vm/method.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/method.hpp')
-rw-r--r--src/vm/method.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vm/method.hpp b/src/vm/method.hpp
index 91575da8d7..151d1cc40b 100644
--- a/src/vm/method.hpp
+++ b/src/vm/method.hpp
@@ -2559,7 +2559,7 @@ protected:
nomdStubNeedsCOMStarted = 0x0800, // EnsureComStarted must be called before executing the method
nomdMulticastStub = 0x1000,
nomdUnboxingILStub = 0x2000,
- nomdSecureDelegateStub = 0x4000,
+ nomdWrapperDelegateStub = 0x4000,
nomdILStub = 0x00010000,
nomdLCGMethod = 0x00020000,
@@ -2668,12 +2668,12 @@ public:
return !!(m_dwExtendedFlags & nomdMulticastStub);
}
#endif
-#ifdef FEATURE_STUBS_AS_IL
- bool IsSecureDelegateStub() {
+ bool IsWrapperDelegateStub() {
LIMITED_METHOD_DAC_CONTRACT;
_ASSERTE(IsILStub());
- return !!(m_dwExtendedFlags & nomdSecureDelegateStub);
+ return !!(m_dwExtendedFlags & nomdWrapperDelegateStub);
}
+#ifdef FEATURE_INSTANTIATINGSTUB_AS_IL
bool IsUnboxingILStub() {
LIMITED_METHOD_DAC_CONTRACT;
_ASSERTE(IsILStub());