summaryrefslogtreecommitdiff
path: root/src/vm/loaderallocator.hpp
diff options
context:
space:
mode:
authorSteve Harter <sharter@microsoft.com>2015-11-05 18:41:48 -0600
committerSteve Harter <sharter@microsoft.com>2015-11-17 10:57:16 -0600
commit4e06e4271162ac65a57719398e3b5572de9f5185 (patch)
tree1ca0a0122505a5d1eeca015267cbaa3a29456378 /src/vm/loaderallocator.hpp
parent48617ae01367b2aad76938d101199cf369bead64 (diff)
downloadcoreclr-4e06e4271162ac65a57719398e3b5572de9f5185.tar.gz
coreclr-4e06e4271162ac65a57719398e3b5572de9f5185.tar.bz2
coreclr-4e06e4271162ac65a57719398e3b5572de9f5185.zip
Enable CLANG sanitizers for native debug builds
Diffstat (limited to 'src/vm/loaderallocator.hpp')
-rw-r--r--src/vm/loaderallocator.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vm/loaderallocator.hpp b/src/vm/loaderallocator.hpp
index a9166ea9f2..ec537c72b4 100644
--- a/src/vm/loaderallocator.hpp
+++ b/src/vm/loaderallocator.hpp
@@ -144,7 +144,9 @@ protected:
FatTokenSet *m_pFatTokenSet;
#endif
+#ifndef CROSSGEN_COMPILE
VirtualCallStubManager *m_pVirtualCallStubManager;
+#endif
private:
typedef SHash<PtrSetSHashTraits<LoaderAllocator * > > LoaderAllocatorSet;
@@ -432,11 +434,13 @@ public:
void InitVirtualCallStubManager(BaseDomain *pDomain, BOOL fCollectible = FALSE);
void UninitVirtualCallStubManager();
+#ifndef CROSSGEN_COMPILE
inline VirtualCallStubManager *GetVirtualCallStubManager()
{
LIMITED_METHOD_CONTRACT;
return m_pVirtualCallStubManager;
}
+#endif
}; // class LoaderAllocator
typedef VPTR(LoaderAllocator) PTR_LoaderAllocator;