Changeset 91706 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
- Timestamp:
- Jul 25, 2011, 2:33:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r90875 r91706 379 379 CallLinkInfo& callLinkInfo(int index) { return m_callLinkInfos[index]; } 380 380 381 void addMethodCallLinkInfos(unsigned n) { m_methodCallLinkInfos.grow(n); }381 void addMethodCallLinkInfos(unsigned n) { ASSERT(m_globalData->canUseJIT()); m_methodCallLinkInfos.grow(n); } 382 382 MethodCallLinkInfo& methodCallLinkInfo(int index) { return m_methodCallLinkInfos[index]; } 383 383 #endif
Note:
See TracChangeset
for help on using the changeset viewer.