Changeset 34751 in webkit for trunk/JavaScriptCore/VM/Machine.cpp
- Timestamp:
- Jun 23, 2008, 5:19:25 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.cpp
r34696 r34751 576 576 if (isGlobalCallFrame(registerBase, r)) 577 577 return false; 578 579 codeBlock = callFrame[CallerCodeBlock].u.codeBlock; 580 if (!codeBlock) 581 return false; 582 578 583 579 // If this call frame created an activation, tear it off. 584 580 if (JSActivation* activation = static_cast<JSActivation*>(callFrame[OptionalCalleeActivation].u.jsValue)) { … … 586 582 activation->copyRegisters(); 587 583 } 584 585 codeBlock = callFrame[CallerCodeBlock].u.codeBlock; 586 if (!codeBlock) 587 return false; 588 588 589 589 k = codeBlock->jsValues.data();
Note:
See TracChangeset
for help on using the changeset viewer.