summaryrefslogtreecommitdiff
path: root/src/vm/dynamicmethod.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/dynamicmethod.h')
-rw-r--r--src/vm/dynamicmethod.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vm/dynamicmethod.h b/src/vm/dynamicmethod.h
index a96200ba4f..f9a92b0af0 100644
--- a/src/vm/dynamicmethod.h
+++ b/src/vm/dynamicmethod.h
@@ -107,6 +107,7 @@ class LCGMethodResolver : public DynamicResolver
friend class ExecutionManager;
friend class EEJitManager;
friend class HostCodeHeap;
+ friend struct ExecutionManager::JumpStubCache;
public:
void Destroy(BOOL fDomainUnload = FALSE);
@@ -162,7 +163,7 @@ private:
ChunkAllocator m_jitTempData;
DynamicStringLiteral* m_DynamicStringLiterals;
IndCellList * m_UsedIndCellList; // list to keep track of all the indirection cells used by the jitted code
- JumpStubBlockHeader* m_jumpStubBlock;
+ ExecutionManager::JumpStubCache * m_pJumpStubCache;
}; // class LCGMethodResolver
//---------------------------------------------------------------------------------------