summaryrefslogtreecommitdiff
path: root/src/vm/proftoeeinterfaceimpl.cpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-01-13 00:40:45 -0800
committerJan Kotas <jkotas@microsoft.com>2018-01-13 00:40:45 -0800
commit2b197262e52b06719db5179cc42b55851874c88c (patch)
tree599b45f80968cd88b2e3e83835e2fb0555324784 /src/vm/proftoeeinterfaceimpl.cpp
parent3126bd31077a6d97f665a573957d5bb6419f9a0f (diff)
downloadcoreclr-2b197262e52b06719db5179cc42b55851874c88c.tar.gz
coreclr-2b197262e52b06719db5179cc42b55851874c88c.tar.bz2
coreclr-2b197262e52b06719db5179cc42b55851874c88c.zip
Revert "Remove relocations for MethodTable::m_pParentMethodTable for Linux ARM"
This reverts commit cf1fb9e17fc8b6ee849edab5a696d0ec5c6eadd2.
Diffstat (limited to 'src/vm/proftoeeinterfaceimpl.cpp')
-rw-r--r--src/vm/proftoeeinterfaceimpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/proftoeeinterfaceimpl.cpp b/src/vm/proftoeeinterfaceimpl.cpp
index b9e5481e0f..5daf127387 100644
--- a/src/vm/proftoeeinterfaceimpl.cpp
+++ b/src/vm/proftoeeinterfaceimpl.cpp
@@ -7091,7 +7091,7 @@ HRESULT ProfToEEInterfaceImpl::GetClassLayout(ClassID classID,
// running into - attempting to get the class layout for all types at module load time.
// If we don't detect this the runtime will AV during the field iteration below. Feel
// free to eliminate this check when a more complete solution is available.
- if (typeHandle.AsMethodTable()->GetParentMethodTablePlainOrRelativePointerPtr()->IsTagged())
+ if (CORCOMPILE_IS_POINTER_TAGGED(*(typeHandle.AsMethodTable()->GetParentMethodTablePtr())))
{
return CORPROF_E_DATAINCOMPLETE;
}