summaryrefslogtreecommitdiff
path: root/src/vm/field.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/field.h')
-rw-r--r--src/vm/field.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/vm/field.h b/src/vm/field.h
index e3e3ccd013..8e762eb4e4 100644
--- a/src/vm/field.h
+++ b/src/vm/field.h
@@ -55,9 +55,6 @@ class FieldDesc
// 8 bits...
unsigned m_isStatic : 1;
unsigned m_isThreadLocal : 1;
-#ifdef FEATURE_REMOTING
- unsigned m_isContextLocal : 1;
-#endif
unsigned m_isRVA : 1;
unsigned m_prot : 3;
// Does this field's mb require all 24 bits
@@ -295,9 +292,6 @@ public:
LIMITED_METHOD_CONTRACT;
return m_isStatic && (m_isRVA || m_isThreadLocal
-#ifdef FEATURE_REMOTING
- || m_isContextLocal
-#endif
);
}
@@ -335,11 +329,7 @@ public:
{
LIMITED_METHOD_DAC_CONTRACT;
-#ifdef FEATURE_REMOTING
- return m_isContextLocal;
-#else
return FALSE;
-#endif
}
// Indicate that this field was added by EnC
@@ -619,11 +609,6 @@ public:
_ASSERTE(IsStatic());
-#ifdef FEATURE_REMOTING
- if (IsContextStatic())
- return Context::GetStaticFieldAddress(this);
- else
-#endif
if (IsThreadStatic())
{
return Thread::GetStaticFieldAddress(this);